Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/RefreshScopeVariableRegistry.java')
-rw-r--r--org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/RefreshScopeVariableRegistry.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/RefreshScopeVariableRegistry.java b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/RefreshScopeVariableRegistry.java
new file mode 100644
index 000000000..afaa57845
--- /dev/null
+++ b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/registry/RefreshScopeVariableRegistry.java
@@ -0,0 +1,50 @@
+package org.eclipse.ui.externaltools.internal.registry;
+
+/**********************************************************************
+Copyright (c) 2002 IBM Corp. and others. All rights reserved.
+This file is made available under the terms of the Common Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/cpl-v10.html
+Contributors:
+**********************************************************************/
+
+import org.eclipse.core.runtime.IConfigurationElement;
+import org.eclipse.ui.externaltools.model.IExternalToolConstants;
+
+/**
+ * Registry of all available refresh scope variables.
+ */
+public class RefreshScopeVariableRegistry extends ExternalToolVariableRegistry {
+
+ /**
+ * Creates the registry and loads the variables.
+ */
+ public RefreshScopeVariableRegistry() {
+ super(IExternalToolConstants.PL_REFRESH_VARIABLES);
+ }
+
+ /**
+ * Returns the refresh scope variable for the given tag
+ * or <code>null</code> if none.
+ */
+ public RefreshScopeVariable getRefreshVariable(String tag) {
+ return (RefreshScopeVariable) findVariable(tag);
+ }
+
+ /**
+ * Returns the list of refresh scope variables in the registry.
+ */
+ public RefreshScopeVariable[] getRefreshVariables() {
+ RefreshScopeVariable[] results = new RefreshScopeVariable[getVariableCount()];
+ copyVariables(results);
+ return results;
+ }
+
+ /* (non-Javadoc)
+ * Method declared on ExternalToolVariableRegistry.
+ */
+ protected ExternalToolVariable newVariable(String tag, String description, IConfigurationElement element) {
+ return new RefreshScopeVariable(tag, description, element);
+ }
+}

Back to the top