Package es.juanrak.svn.gui.menu

Examples of es.juanrak.svn.gui.menu.PopupMenuActionListener


        if( nodo == null) {
          controlador.getLogger().log("No hay ninguna entrada seleccionada.");
          return;
        }
       
        PopupMenuActionListener listener = new PopupMenuActionListener(this.controlador, nodo.getEntrada());
       
        JPopupMenu popup = SVNMenuPopupConstructor.getPopupMenu(nodo.getEntrada(), controlador, listener);
        popup.show((JComponent) object, point.x, point.y);

    }
View Full Code Here


                row = table.convertRowIndexToModel( row );
                if( row != -1 ) {
                    SVNLogRutaEntrada logRutaEntrada = ((SVNPathTableModel)table.getModel()).getRutaEntrada(row);
                    if (logRutaEntrada != null) {
                        if (e.getButton() == MouseEvent.BUTTON3) {
                          PopupMenuActionListener listener = new PopupMenuActionListener(controlador, logRutaEntrada);
                            JPopupMenu popup = SVNMenuPopupConstructor.getPopupMenu(logRutaEntrada, controlador, listener);
                            popup.show(table, pt.x, pt.y);
                        }
                    }
                }
View Full Code Here

TOP

Related Classes of es.juanrak.svn.gui.menu.PopupMenuActionListener

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.