Package at.bestsolution.efxclipse.runtime.emf.edit.ui

Examples of at.bestsolution.efxclipse.runtime.emf.edit.ui.AdapterFactoryTreeItem


  public ContactsTreeView(BorderPane parent, final MApplication application, final ContactsManager contactsManager) {
    EditingDomain editingDomain = contactsManager.getEditingDomain();

    // TreeView
    TreeView<Object> treeView = new TreeView<>();
    treeView.setRoot(new AdapterFactoryTreeItem(contactsManager.getRootGroup(), treeView, contactsManager.getAdapterFactory()));
    AdapterFactoryTreeCellFactory treeCellFactory = new AdapterFactoryTreeCellFactory(contactsManager.getAdapterFactory());

    // add edit support
    treeCellFactory.addCellEditHandler(new EAttributeCellEditHandler(ContactsPackage.eINSTANCE.getGroup_Name(), editingDomain));
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.runtime.emf.edit.ui.AdapterFactoryTreeItem

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.