Examples of ProjectGuidPathCache


Examples of org.jitterbit.integration.data.entity.script.ProjectGuidPathCache

    private boolean mustBeSingleValue;

    public ScriptBuilderModel(IntegrationProject project) {
        checkNotNull(project, "project");
        this.project = project;
        guidPathCache = new ProjectGuidPathCache(project);
        mode = newProperty(MODE_PROPERTY, ScriptBuilderMode.DEVELOPER);
        mode.setAllowsNull(false);
        status = newProperty(STATUS_PROPERTY);
        status.set(ScriptStatus.NONE);
        source = newProperty(SOURCE_PROPERTY);
View Full Code Here

Examples of org.jitterbit.integration.data.entity.script.ProjectGuidPathCache

    private static ExpressionTranslator getTranslator(IntegrationProject project) {
        if (project == null) {
            return null;
        }
        GuidPathCache paths = new ProjectGuidPathCache(project);
        return new CachedPathsExpressionTranslator(paths);
    }
View Full Code Here

Examples of org.jitterbit.integration.data.entity.script.ProjectGuidPathCache

    private final ProjectGuidPathCache pathLookup;

    public TreeMapperSearchUi(TreeMapper treeMapper) {
        tabs = new Tabs();
        pathLookup = new ProjectGuidPathCache(treeMapper.getTreeMapperContainer().getProject());
        sourceSearch = treeMapper.m_sourceTreeComponent.getNodeSearchUi();
        tabs.addContent(TreeStrings.get("Search.Tab.SourceTree"), sourceSearch);
        targetSearch = treeMapper.m_targetTreeComponent.getNodeSearchUi();
        tabs.addContent(TreeStrings.get("Search.Tab.TargetTree"), targetSearch);
        CachedPathsExpressionTranslator translator = new CachedPathsExpressionTranslator(pathLookup);
View Full Code Here

Examples of org.jitterbit.integration.data.entity.script.ProjectGuidPathCache

        ProjectContentViewer viewer = view.getContentViewer();
        return viewer.getItemOrder(EntityType.Script, Script.class);
    }

    private ExpressionTranslator getExpressionTranslator() {
        ProjectGuidPathCache pathLookup = new ProjectGuidPathCache(view.getProject());
        return new CachedPathsExpressionTranslator(pathLookup);
    }
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.