Package

Source Code of Ejemplo

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;

import javax.swing.AbstractAction;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.KeyStroke;

import org.jdesktop.swingx.JXFrame;

import es.juanrak.svn.cnf.SVNError;
import es.juanrak.svn.modelo.SVNLogEntrada;
import es.juanrak.svn.plugin.SVNJavaPlugin;

public class Ejemplo extends SVNJavaPlugin {
    public void ejecutar(SVNLogEntrada logEntradaRecibo) {
        try {
            SVNLogEntrada entradaAnterior = getControlador().getListaLogEntrada(logEntradaRecibo.getParaPath(), logEntradaRecibo.getRevision());
            System.out.println( entradaAnterior.getMensaje() );
        }
        catch (Exception e) {
        }
    }
}
TOP

Related Classes of Ejemplo

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.