Examples of ProjectUiState


Examples of org.jitterbit.integration.client.project.ProjectUiState

        // If any of the affected transformations were opened the last time the project was
        // edited, they would be automatically opened now, meaning that the user would
        // be prompted to login to a server since the mapping structures need to be recreated.
        // This is distracting, so we clear the list of items to display on startup.
        // (We leave the tree expansion state intact, which is why we don't call state.reset().)
        ProjectUiState state = project.getUiState();
        state.setEntitiesToDisplayOnStartUp(null);
        state.setActiveEntityOnStartUp(null);
    }
View Full Code Here

Examples of org.jitterbit.integration.client.project.ProjectUiState

        this.view = view;
        this.project = project;
    }

    public void saveState(ProjectContentViewer contentViewer, EditorService editorService) {
        ProjectUiState state = project.getUiState();
        state.reset();
        processDisplayedEntities(state, editorService);
        processExpandedNodes(state, contentViewer);
        saveStateToDisk();
    }
View Full Code Here

Examples of org.jitterbit.integration.client.project.ProjectUiState

                    final ActiveObjectService aos, final EntityPageDisplayer pageDisplayer) {
        Runnable job = new Runnable() {

            @Override
            public void run() {
                ProjectUiState state = project.getUiState();
                setInitiallyOpenedPages(state, editorService, pageDisplayer);
                setInitialTreeExpansionState(state, contentViewer);
                setActiveObject(aos, editorService);
            }
        };
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.