blob: 7d9ac88c620afbddad510853e750fcaf6dba626d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.ant.tests.core.testplugin;
import org.eclipse.ant.core.IAntPropertyValueProvider;
public class AntTestPropertyValueProvider implements IAntPropertyValueProvider {
/* (non-Javadoc)
* @see org.eclipse.ant.core.IAntPropertyValueProvider#getAntPropertyValue(java.lang.String)
*/
public String getAntPropertyValue(String antPropertyName) {
return "AntTestPropertyValueProvider";
}
}