Package de.chris_soft.fyllgen.menu.search

Examples of de.chris_soft.fyllgen.menu.search.SearchNextMailPersons


    // N�chstgelegene Personen mit Mailadresse suchen.
    MenuItem searchNextMailPersons = new MenuItem(submenu, SWT.PUSH);
    searchNextMailPersons.setText("N�chste Personen mit Mailadresse\tCtrl + M");
    searchNextMailPersons.setAccelerator(SWT.CONTROL + 'M');
    searchNextMailPersons.addListener(SWT.Selection, new SearchNextMailPersons());

    // Zur n�chsten Person ohne Nachfahren wechseln.
    MenuItem nextLeaf = new MenuItem(submenu, SWT.PUSH);
    nextLeaf.setText("N�chste Person ohne Nachfahren\tCtrl + Cursor-Down");
    nextLeaf.setAccelerator(SWT.CTRL + SWT.ARROW_DOWN);
View Full Code Here

TOP

Related Classes of de.chris_soft.fyllgen.menu.search.SearchNextMailPersons

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.