blob: 409e51541da29d771e593ab33242fc2b8a4b5cc7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.externaltools.internal.registry;
import org.eclipse.ui.externaltools.internal.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.EXTENSION_POINT_REFRESH_VARIABLES);
}
}