Examples of commitChanges()


Examples of org.eclipse.php.formatter.ui.preferences.ProfileManager.commitChanges()

    IScopeContext scopeContext = InstanceScope.INSTANCE;
    ProfileManager profileManager = new ProfileManager(
        new ArrayList<Profile>(), scopeContext);
    profileManager.clearAllSettings(scopeContext);
    profileManager.commitChanges(scopeContext);

  }

  public FormatterLinuxAutoEditTests(String description) {
    super(description);
View Full Code Here

Examples of org.sonatype.nexus.proxy.maven.maven2.M2Repository.commitChanges()

    assertThat(new File(repoLocation, ".nexus/trash"), FileMatchers.isDirectory());

    M2Repository outOfServiceRepo =
        (M2Repository) this.lookup(RepositoryRegistry.class).getRepository("out-of-service-repo");
    outOfServiceRepo.setLocalStatus(LocalStatus.OUT_OF_SERVICE);
    outOfServiceRepo.commitChanges();

    Wastebasket wastebasket = this.lookup(Wastebasket.class);
    wastebasket.purgeAll(1L);

    // NEXUS-4642 check if directories were deleted
View Full Code Here

Examples of unbbayes.util.extension.bn.inference.InferenceAlgorithmOptionPanel.commitChanges()

//                    }
                   
                    // commit changes (made at each option panel) on inference algorithm
                    InferenceAlgorithmOptionPanel currentPanel = getSelectedAlgorithmOptionPanel();
                    if (currentPanel != null) {
                      currentPanel.commitChanges();
                     
                      // updating the inference algorithm referenced by controller
                        controller.setInferenceAlgorithm(currentPanel.getInferenceAlgorithm());
                    }
                   
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.