Package org.jitterbit.integration.client.ui.structure.editor.ldap.tree

Examples of org.jitterbit.integration.client.ui.structure.editor.ldap.tree.AttributeSelectionModel.restore()


    private void updateTreeModel(SelectedObjectStructures structures) {
        AttributeSelectionModel oldModel = treeModel.get();
        Object memento = oldModel.getMemento();
        AttributeSelectionModel newModel = new AttributeSelectionModel(
                        classes.get().getLdapLocation(), type, structures, ldapStructure, ldapCache);
        newModel.restore(memento);
        treeModel.set(newModel);
    }

    public AttributeSelectionModel getTreeModel() {
        return treeModel.get();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.