donaldp 2002/06/10 20:52:35
Added: container/src/java/org/apache/myrmidon/interfaces/oldmodel
TargetMetaData.java
Removed: container/src/java/org/apache/myrmidon/interfaces/model
Module.java TargetMetaData.java
Log:
Remove the Module abstraction as it was nive in theory but sucked in practice.
Revision Changes Path
1.1
jakarta-ant-myrmidon/container/src/java/org/apache/myrmidon/interfaces/oldmodel/TargetMetaData.java
Index: TargetMetaData.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.txt file.
*/
package org.apache.myrmidon.interfaces.oldmodel;
/**
* This interface represents meta-data about the
* targets capable of being executed in a [EMAIL PROTECTED] Project}.
* Each target has a name, description and possibly a
* set of child Targets.
*
* <p>Note that the notion of child targets does not
* necessarily imply that executing parent Target will
* execute all child targets. The parent-child relationship
* is just for organizational purposes and human consumption
* rather than implying any underlying physical structure.</p>
*
* @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
* @version $Revision: 1.1 $ $Date: 2002/06/11 03:52:35 $
*/
public interface TargetMetaData
{
/**
* Retrieve the name of the Target.
*
* @return the name of the Target.
*/
String getName();
/**
* Retrieve a description of the target.
*
* @return a description of the target.
*/
String getDescription();
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>