donaldp 01/02/06 21:37:48
Added: proposal/myrmidon/src/java/org/apache/ant/tasklet
DataType.java
Log:
Moved DataType to tasklet hierarchy as it can not exist independenct of
tasklets.
Revision Changes Path
1.1
jakarta-ant/proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java
Index: DataType.java
===================================================================
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.ant.tasklet;
import org.apache.avalon.Component;
/**
* Base class for those classes that can appear inside the build file
* as stand alone data types.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Stefan Bodewig</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
*/
public interface DataType
extends Component
{
}