Browse Source

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
master
Peter Donald 24 years ago
parent
commit
7e7539a4f6
1 changed files with 22 additions and 0 deletions
  1. +22
    -0
      proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java

+ 22
- 0
proposal/myrmidon/src/java/org/apache/ant/tasklet/DataType.java View File

@@ -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 <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public interface DataType
extends Component
{
}

Loading…
Cancel
Save