Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.wst.validation/vf2/org/eclipse/wst/validation/MutableWorkspaceSettings.java')
-rw-r--r--plugins/org.eclipse.wst.validation/vf2/org/eclipse/wst/validation/MutableWorkspaceSettings.java96
1 files changed, 0 insertions, 96 deletions
diff --git a/plugins/org.eclipse.wst.validation/vf2/org/eclipse/wst/validation/MutableWorkspaceSettings.java b/plugins/org.eclipse.wst.validation/vf2/org/eclipse/wst/validation/MutableWorkspaceSettings.java
deleted file mode 100644
index 80d18f112..000000000
--- a/plugins/org.eclipse.wst.validation/vf2/org/eclipse/wst/validation/MutableWorkspaceSettings.java
+++ /dev/null
@@ -1,96 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.validation;
-
-import org.eclipse.wst.validation.internal.model.GlobalPreferencesValues;
-
-
-/**
- * This class holds the overall workspace validation settings.
- * <p>
- * The following procedure is used to change a project's Validation settings.
- * <ol>
- * <li>The MutableWorkspaceSettings are retrieved.</li>
- * <li>The MutableWorkspaceSettings are changed.</li>
- * <li>The MutableWorkspaceSettings are "applied".</li>
- * </ol>
- * </p>
- * <p>
- * These settings can be retrieved with {@link ValidationFramework#getWorkspaceSettings()}.
- * </p>
- * <p>
- * <b>Provisional API:</b> This class/interface is part of an interim API that is still under development and expected to
- * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
- * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
- * (repeatedly) as the API evolves.
- * </p>
-
- * @author karasiuk
- *
- */
-public final class MutableWorkspaceSettings {
-
- private final GlobalPreferencesValues _values;
-
- private final IMutableValidator[] _validators;
-
- public IMutableValidator[] getValidators() {
- return _validators;
- }
-
- public MutableWorkspaceSettings(IMutableValidator[] validators, GlobalPreferencesValues values){
- _validators = validators;
- _values = values;
- }
-
- public GlobalPreferencesValues getGlobalPreferencesValues(){
- return _values;
- }
-
- public boolean getAutoSave() {
- return _values.saveAutomatically;
- }
-
- public void setAutoSave(boolean autoSave) {
- _values.saveAutomatically = autoSave;
- }
-
- /**
- * Can this project override the workspace level validation settings?
- */
- public boolean getOverride() {
- return _values.override;
- }
-
- /**
- * Change whether this project can override workspace level validation settings.
- * @param override Set to true if the project is allowed to override workspace level validation settings.
- */
- public void setOverride(boolean override) {
- _values.override = override;
- }
-
- /**
- * Is validation suspended for this project?
- */
- public boolean getSuspend() {
- return _values.disableAllValidation;
- }
-
- /**
- * Change whether this project is suspending it's validation.
- * @param suspend Set to true, to suspend validation for this project.
- */
- public void setSuspend(boolean suspend) {
- _values.disableAllValidation = suspend;
- }
-
-}

Back to the top