Package es.juanrak.svn.showlog

Examples of es.juanrak.svn.showlog.ShowLogFrame


   
    public void actionPerformed(ActionEvent action) {
        try
        {
            if(SVNMenuPopupConstructor.COMANDO_SHOW_LOG.equals(action.getActionCommand())) {
                ShowLogFrame showLogFrame = new ShowLogFrame(controlador, getEntrada() );
                showLogFrame.initProceso();
                showLogFrame.setVisible(true);
               
            }
            else if(SVNMenuPopupConstructor.COMANDO_VER.equals(action.getActionCommand())) {
                SVNEntrada entrada = getEntrada();
                if( entrada.getFicheroRemoto() == null ) entrada.setFicheroRemoto(controlador.getFichero( entrada ));
View Full Code Here

TOP

Related Classes of es.juanrak.svn.showlog.ShowLogFrame

Copyright © 2018 www.massapicom. 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.