From 7e7539a4f64da4ae532fe4df64ec4d5a95085569 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Wed, 7 Feb 2001 05:37:48 +0000 Subject: [PATCH] Moved DataType to tasklet hierarchy as it can not exist independenct of tasklets. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268602 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/ant/tasklet/DataType.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java diff --git a/proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java b/proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java new file mode 100644 index 000000000..65f044851 --- /dev/null +++ b/proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java @@ -0,0 +1,22 @@ +/* + * 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 Stefan Bodewig + * @author Peter Donald + */ +public interface DataType + extends Component +{ +}