Package com.volantis.mcs.eclipse.builder.properties

Examples of com.volantis.mcs.eclipse.builder.properties.CollaborativeWorkingComponent


        policySource.setLayoutData(textGridData);
        policySource.setText(MCSProjectNature.DEFAULT_POLICY_SRC_PATH.toOSString());
        policySource.addListener(SWT.Modify, this);

        collaborativeComponent =
            new CollaborativeWorkingComponent(null, topLevel, SWT.NONE);
        final GridData collaborativeCompositeGridData =
            new GridData(GridData.FILL_HORIZONTAL);
        collaborativeCompositeGridData.horizontalSpan = 2;
        collaborativeComponent.setLayoutData(collaborativeCompositeGridData);
        collaborativeComponent.addModifyListener(this);
View Full Code Here


    public IWizardPage getNextPage(final IWizardPage currentPage) {
        final IWizardPage nextPage = super.getNextPage(currentPage);
        if (nextPage == repositoryWizardPage) {
            final String projectName = mainPage.getProjectName();
            final CollaborativeWorkingComponent collaborativeWorkingComponent =
                repositoryWizardPage.getCollaborativeWorkingComponent();
            collaborativeWorkingComponent.setProjectName(projectName);
        }
        return nextPage;
    }
View Full Code Here

                repositoryWizardPage.getPolicySourceDirectory();

        MCSProjectNature.setPolicySourcePath(newProject, policySrc);


        final CollaborativeWorkingComponent collaborativeWorkingComponent =
            repositoryWizardPage.getCollaborativeWorkingComponent();
        collaborativeWorkingComponent.setProject(newProject);
        collaborativeWorkingComponent.saveCollaborativeWorking();

        // Create the directory (if it doesn't exist already).
        String policySrcFile = newProject.getLocation().
                toOSString() + File.separatorChar + policySrc;
        final File file = new File(policySrcFile);
View Full Code Here

            // Save the default policy source directory.
            String policySrc =
                    projectPropertiesPage.getPolicySourceDirectory();
            MCSProjectNature.setPolicySourcePath(mcsProject, policySrc);

            final CollaborativeWorkingComponent collaborativeWorkingComponent =
                projectPropertiesPage.getCollaborativeWorkingComponent();
            collaborativeWorkingComponent.setProject(mcsProject);
            collaborativeWorkingComponent.saveCollaborativeWorking();

            // Create the directory (if it doesn't exist already).
            String policySrcFile = mcsProject.getLocation().
                    toOSString() + File.separatorChar + policySrc;
            final File file = new File(policySrcFile);
View Full Code Here

TOP

Related Classes of com.volantis.mcs.eclipse.builder.properties.CollaborativeWorkingComponent

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.