1 package net.sourceforge.phpdt.externaltools.internal.registry;
3 /**********************************************************************
4 Copyright (c) 2002 IBM Corp. and others. All rights reserved.
5 This file is made available under the terms of the Common Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/cpl-v10.html
10 **********************************************************************/
12 import net.sourceforge.phpdt.externaltools.model.IExternalToolConstants;
14 import org.eclipse.core.runtime.IConfigurationElement;
17 * Registry of all available argument variables.
19 public class ArgumentVariableRegistry extends ExternalToolVariableRegistry {
22 * Creates the registry and loads the variables.
24 public ArgumentVariableRegistry() {
25 super(IExternalToolConstants.EXTENSION_POINT_ARGUMENT_VARIABLES);
29 * Returns the argument variable for the given tag
30 * or <code>null</code> if none.
32 public ArgumentVariable getArgumentVariable(String tag) {
33 return (ArgumentVariable) findVariable(tag);
37 * Returns the list of argument variables in the registry.
39 public ArgumentVariable[] getArgumentVariables() {
40 ArgumentVariable[] results = new ArgumentVariable[getVariableCount()];
41 copyVariables(results);
46 * Method declared on ExternalToolVariableRegistry.
48 protected ExternalToolVariable newVariable(String tag, String description, IConfigurationElement element) {
49 return new ArgumentVariable(tag, description, element);