blob: 97d0a400a31beb0341768a1311e4d7b0b5f15ef4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.tests.core.support.types;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.Path;
public class AntTestPath extends Path {
String message;
public AntTestPath(Project project) {
super(project);
}
public void setMessage(String message) {
this.message = message;
}
public String getMessage() {
return message;
}
}