Package de.chris_soft.fyllgen.menu.edit

Examples of de.chris_soft.fyllgen.menu.edit.DeleteConnection


    // Verbindung zwischen Personen l�schen.
    MenuItem deleteConnection = new MenuItem(submenu, SWT.PUSH);
    deleteConnection.setText("&Verbindung l�schen\tCtrl + L");
    deleteConnection.setAccelerator(SWT.CONTROL + 'L');
    deleteConnection.addListener(SWT.Selection, new DeleteConnection());

    // Person l�schen.
    MenuItem deletePerson = new MenuItem(submenu, SWT.PUSH);
    deletePerson.setText("Person l&�schen\tCtrl + Entf");
    deletePerson.setAccelerator(SWT.CONTROL + SWT.DEL);
View Full Code Here

TOP

Related Classes of de.chris_soft.fyllgen.menu.edit.DeleteConnection

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.