Package bndtools.editor.workspace

Examples of bndtools.editor.workspace.WorkspaceMainPart


        form.getForm().addMessageHyperlinkListener(new MessageHyperlinkAdapter(getEditor()));

        // Create controls
        Composite body = form.getBody();

        WorkspaceMainPart linksPart = new WorkspaceMainPart(mainBuildFile, body, tk, Section.TITLE_BAR | Section.EXPANDED | Section.DESCRIPTION);
        managedForm.addPart(linksPart);

        PluginPathPart pluginPathPart = new PluginPathPart(body, tk, Section.TITLE_BAR | Section.EXPANDED | Section.DESCRIPTION | Section.TWISTIE);
        managedForm.addPart(pluginPathPart);

        pluginsPart = new PluginsPart(body, tk, Section.TITLE_BAR | Section.EXPANDED | Section.DESCRIPTION | Section.TWISTIE);
        managedForm.addPart(pluginsPart);

        // Layout
        GridLayout layout = new GridLayout(1, false);
        body.setLayout(layout);

        linksPart.getSection().setLayoutData(PageLayoutUtils.createCollapsed());

        pluginPathPart.getSection().setLayoutData(PageLayoutUtils.createExpanded());
        pluginPathPart.getSection().addExpansionListener(new ResizeExpansionAdapter(pluginPathPart.getSection()));

        pluginsPart.getSection().setLayoutData(PageLayoutUtils.createExpanded());
View Full Code Here

TOP

Related Classes of bndtools.editor.workspace.WorkspaceMainPart

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.