Package de.chris_soft.fyllgen.menu.edit

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


    // (Neues) Elternteil hinzuf�gen.
    MenuItem insertParentItem = new MenuItem(submenu, SWT.PUSH);
    insertParentItem.setText("&Elternteil hinzuf�gen\tCtrl + E");
    insertParentItem.setAccelerator(SWT.CONTROL + 'E');
    insertParentItem.addListener(SWT.Selection, new InsertParentPerson());

    // (Neues) Kind hinzuf�gen.
    MenuItem insertChildItem = new MenuItem(submenu, SWT.PUSH);
    insertChildItem.setText("&Kind hinzuf�gen\tCtrl + K");
    insertChildItem.setAccelerator(SWT.CONTROL + 'K');
View Full Code Here

TOP

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

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.