yea - now no one will call me Donald!!! git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269959 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -10,7 +10,7 @@ package org.apache.myrmidon; | |||||
| /** | /** | ||||
| * Abstract interface to hold constants. | * Abstract interface to hold constants. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Constants | public interface Constants | ||||
| { | { | ||||
| @@ -16,7 +16,7 @@ import org.apache.avalon.framework.logger.AbstractLoggable; | |||||
| /** | /** | ||||
| * This is the class that Task writers should extend to provide custom tasks. | * This is the class that Task writers should extend to provide custom tasks. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public abstract class AbstractTask | public abstract class AbstractTask | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.ValuedEnum; | |||||
| /** | /** | ||||
| * Type safe wrapper class for Java Version enums. | * Type safe wrapper class for Java Version enums. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public final class JavaVersion | public final class JavaVersion | ||||
| extends ValuedEnum | extends ValuedEnum | ||||
| @@ -21,7 +21,7 @@ package org.apache.myrmidon.api; | |||||
| * | * | ||||
| * The Components passed in via ComponentManager are determined by container. | * The Components passed in via ComponentManager are determined by container. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Task | public interface Task | ||||
| { | { | ||||
| @@ -18,7 +18,7 @@ import org.apache.avalon.framework.context.Context; | |||||
| * Unlike other APIs the Logging is provided through another interface (Loggable) | * Unlike other APIs the Logging is provided through another interface (Loggable) | ||||
| * as is access to Peer components (via Composable). | * as is access to Peer components (via Composable). | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface TaskContext | public interface TaskContext | ||||
| extends Context | extends Context | ||||
| @@ -14,7 +14,7 @@ import org.apache.avalon.framework.CascadingException; | |||||
| * It is cascading so that further embedded information can be contained. | * It is cascading so that further embedded information can be contained. | ||||
| * ie TaskException was caused by IOException etc. | * ie TaskException was caused by IOException etc. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class TaskException | public class TaskException | ||||
| extends CascadingException | extends CascadingException | ||||
| @@ -17,7 +17,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| * AspectHandler is the interface through which aspects are handled. | * AspectHandler is the interface through which aspects are handled. | ||||
| * | * | ||||
| * @author <a href="mailto:conor@apache.org">Conor MacNeill</a> | * @author <a href="mailto:conor@apache.org">Conor MacNeill</a> | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public abstract class AbstractAspectHandler | public abstract class AbstractAspectHandler | ||||
| implements AspectHandler | implements AspectHandler | ||||
| @@ -17,7 +17,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| * AspectHandler is the interface through which aspects are handled. | * AspectHandler is the interface through which aspects are handled. | ||||
| * | * | ||||
| * @author <a href="mailto:conor@apache.org">Conor MacNeill</a> | * @author <a href="mailto:conor@apache.org">Conor MacNeill</a> | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface AspectHandler | public interface AspectHandler | ||||
| { | { | ||||
| @@ -10,7 +10,7 @@ package org.apache.myrmidon.aspects; | |||||
| /** | /** | ||||
| * A Noop aspect handler that does nothing. | * A Noop aspect handler that does nothing. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class NoopAspectHandler | public class NoopAspectHandler | ||||
| extends AbstractAspectHandler | extends AbstractAspectHandler | ||||
| @@ -23,7 +23,7 @@ import org.apache.myrmidon.interfaces.aspect.AspectManager; | |||||
| /** | /** | ||||
| * Manage and propogate Aspects. | * Manage and propogate Aspects. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultAspectManager | public class DefaultAspectManager | ||||
| implements AspectManager, Initializable | implements AspectManager, Initializable | ||||
| @@ -1,2 +1,2 @@ | |||||
| no.aspect=No such aspect with name {0}. | no.aspect=No such aspect with name {0}. | ||||
| no.settings=Can not provide Settings to AspectManager. | |||||
| no.settings=Can not provide Settings to AspectManager. | |||||
| @@ -32,7 +32,7 @@ import org.xml.sax.XMLReader; | |||||
| /** | /** | ||||
| * Default implementation to construct project from a build file. | * Default implementation to construct project from a build file. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ATIProjectBuilder | public class ATIProjectBuilder | ||||
| extends DefaultProjectBuilder | extends DefaultProjectBuilder | ||||
| @@ -36,7 +36,7 @@ import org.xml.sax.XMLReader; | |||||
| /** | /** | ||||
| * Default implementation to construct project from a build file. | * Default implementation to construct project from a build file. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultProjectBuilder | public class DefaultProjectBuilder | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -17,7 +17,7 @@ import org.xml.sax.helpers.DefaultHandler; | |||||
| * Have to do it this way as there doesn't seem to be a *safe* way | * Have to do it this way as there doesn't seem to be a *safe* way | ||||
| * of redirecting content handlers at runtime while using transformers. | * of redirecting content handlers at runtime while using transformers. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ReactorPIHandler | public class ReactorPIHandler | ||||
| extends DefaultHandler | extends DefaultHandler | ||||
| @@ -22,4 +22,4 @@ ant.import-malformed.error=Malformed import at {0}. If name or type attribute is | |||||
| ant.target-noname.error=Discovered un-named target at {0}. | ant.target-noname.error=Discovered un-named target at {0}. | ||||
| ant.target-bad-name.error=Target with an invalid name at {0}. | ant.target-bad-name.error=Target with an invalid name at {0}. | ||||
| ant.target-bad-logic.error=Discovered invalid target that has both a if and unless condition at {0}. | ant.target-bad-logic.error=Discovered invalid target that has both a if and unless condition at {0}. | ||||
| ant.target-bad-dependency.error=Discovered empty dependency in target {0} at {1}. | |||||
| ant.target-bad-dependency.error=Discovered empty dependency in target {0} at {1}. | |||||
| @@ -12,7 +12,7 @@ import org.xml.sax.SAXException; | |||||
| /** | /** | ||||
| * Dummy exception to stop parsing "safely". | * Dummy exception to stop parsing "safely". | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| class StopParsingException | class StopParsingException | ||||
| extends SAXException | extends SAXException | ||||
| @@ -33,7 +33,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * Class used to configure tasks. | * Class used to configure tasks. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultConfigurer | public class DefaultConfigurer | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -15,4 +15,4 @@ no-element-method.error=Unable to set element {0} due to not finding any appropr | |||||
| illegal-access.error=Error retrieving methods with correct access specifiers. | illegal-access.error=Error retrieving methods with correct access specifiers. | ||||
| invoke-target.error=Error calling method attribute {0}. | invoke-target.error=Error calling method attribute {0}. | ||||
| no-complex-type.error=Can not get complex type for non-primitive type {0}. | no-complex-type.error=Can not get complex type for non-primitive type {0}. | ||||
| subelement-create.error=Error creating sub-element. | |||||
| subelement-create.error=Error creating sub-element. | |||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.interfaces.converter.ConverterRegistry; | |||||
| /** | /** | ||||
| * Default implementation of Converter registry. | * Default implementation of Converter registry. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultConverterRegistry | public class DefaultConverterRegistry | ||||
| implements ConverterRegistry | implements ConverterRegistry | ||||
| @@ -25,7 +25,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * Converter engine to handle converting between types. | * Converter engine to handle converting between types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultMasterConverter | public class DefaultMasterConverter | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -3,4 +3,4 @@ found-converter.notice=Found Converter: {0}. | |||||
| no-converter-factory.error=Unable to retrieve Converter factory from TypeManager. | no-converter-factory.error=Unable to retrieve Converter factory from TypeManager. | ||||
| no-converter.error=Unable to find converter for {0} to {1} conversion. | no-converter.error=Unable to find converter for {0} to {1} conversion. | ||||
| bad-typemanager.error=Badly configured TypeManager missing converter definition. | |||||
| bad-typemanager.error=Badly configured TypeManager missing converter definition. | |||||
| @@ -38,7 +38,7 @@ import org.xml.sax.XMLReader; | |||||
| /** | /** | ||||
| * This class deploys a .tsk file into a registry. | * This class deploys a .tsk file into a registry. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultDeployer | public class DefaultDeployer | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -26,7 +26,7 @@ import org.apache.myrmidon.interfaces.deployer.DeploymentException; | |||||
| /** | /** | ||||
| * This class deploys a .tsk file into a registry. | * This class deploys a .tsk file into a registry. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Deployment | public class Deployment | ||||
| { | { | ||||
| @@ -14,4 +14,4 @@ file-is-dir.error=Could not find application archive at {0} as it is a directory | |||||
| bad-url.error=Unable to form url from file {0}. | bad-url.error=Unable to form url from file {0}. | ||||
| bad-parser.error=Error configuring parser. | bad-parser.error=Error configuring parser. | ||||
| bad-read.error=Error reading configuration. | |||||
| bad-read.error=Error reading configuration. | |||||
| @@ -41,7 +41,7 @@ import org.apache.myrmidon.interfaces.workspace.Workspace; | |||||
| * Default implementation of Embeddor. | * Default implementation of Embeddor. | ||||
| * Instantiate this to embed inside other applications. | * Instantiate this to embed inside other applications. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultEmbeddor | public class DefaultEmbeddor | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -4,4 +4,4 @@ bad-type.error=Object {0} is not an instance of {1}. | |||||
| bad-ctor.error=Non-public constructor for {0} {1}. | bad-ctor.error=Non-public constructor for {0} {1}. | ||||
| no-instantiate.error=Error instantiating class for {0} {1}. | no-instantiate.error=Error instantiating class for {0} {1}. | ||||
| no-class.error=Could not find the class for {0} ({1}). | no-class.error=Could not find the class for {0} ({1}). | ||||
| bad-filename.error=Unable to retrieve filename for file {0}. | |||||
| bad-filename.error=Unable to retrieve filename for file {0}. | |||||
| @@ -30,7 +30,7 @@ import org.apache.myrmidon.interfaces.type.TypeManager; | |||||
| /** | /** | ||||
| * Frames in which tasks are executed. | * Frames in which tasks are executed. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultExecutionFrame | public class DefaultExecutionFrame | ||||
| implements ExecutionFrame, Loggable, Contextualizable, Composable | implements ExecutionFrame, Loggable, Contextualizable, Composable | ||||
| @@ -16,4 +16,4 @@ init.error=Error initializing task {0} at {1} (Reason: {2}). | |||||
| logger.error=Error setting logger for task {0} at {1} (Reason: {2}). | logger.error=Error setting logger for task {0} at {1} (Reason: {2}). | ||||
| unused-settings.error=Unused aspect settings for namespace {0} (parameterCount={1} elementCount={2}). | unused-settings.error=Unused aspect settings for namespace {0} (parameterCount={1} elementCount={2}). | ||||
| dispatch-settings.notice=Dispatching Aspect Settings to namespace {0} (parameterCount={1} elementCount={2}). | |||||
| dispatch-settings.notice=Dispatching Aspect Settings to namespace {0} (parameterCount={1} elementCount={2}). | |||||
| @@ -20,7 +20,7 @@ import org.apache.myrmidon.interfaces.model.TypeLib; | |||||
| /** | /** | ||||
| * Default project implementation. | * Default project implementation. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultProject | public class DefaultProject | ||||
| implements Project | implements Project | ||||
| @@ -25,7 +25,7 @@ import org.xml.sax.XMLReader; | |||||
| /** | /** | ||||
| * Interface to manage roles and mapping to names. | * Interface to manage roles and mapping to names. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| * @version CVS $Revision$ $Date$ | * @version CVS $Revision$ $Date$ | ||||
| */ | */ | ||||
| public class DefaultRoleManager | public class DefaultRoleManager | ||||
| @@ -17,7 +17,7 @@ import org.apache.myrmidon.interfaces.type.TypeException; | |||||
| /** | /** | ||||
| * The interface that is used to manage types. | * The interface that is used to manage types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultTypeManager | public class DefaultTypeManager | ||||
| implements TypeManager | implements TypeManager | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.interfaces.type.TypeException; | |||||
| /** | /** | ||||
| * This factory acts as a proxy to set of object factorys. | * This factory acts as a proxy to set of object factorys. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class MultiSourceTypeFactory | public class MultiSourceTypeFactory | ||||
| implements TypeFactory | implements TypeFactory | ||||
| @@ -23,7 +23,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * Default implementation of TaskContext. | * Default implementation of TaskContext. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultTaskContext | public class DefaultTaskContext | ||||
| extends DefaultContext | extends DefaultContext | ||||
| @@ -47,7 +47,7 @@ import org.apache.myrmidon.listeners.ProjectListener; | |||||
| /** | /** | ||||
| * This is the default implementation of Workspace. | * This is the default implementation of Workspace. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultWorkspace | public class DefaultWorkspace | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -14,7 +14,7 @@ import org.apache.myrmidon.listeners.ProjectListener; | |||||
| /** | /** | ||||
| * Adapter between Avalon LogKit and Project listener interfaces. | * Adapter between Avalon LogKit and Project listener interfaces. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class LogTargetToListenerAdapter | public class LogTargetToListenerAdapter | ||||
| implements LogTarget | implements LogTarget | ||||
| @@ -14,7 +14,7 @@ import org.apache.myrmidon.interfaces.model.Project; | |||||
| /** | /** | ||||
| * This contains detaisl for each project that is managed by ProjectManager. | * This contains detaisl for each project that is managed by ProjectManager. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public final class ProjectEntry | public final class ProjectEntry | ||||
| { | { | ||||
| @@ -12,7 +12,7 @@ import org.apache.myrmidon.listeners.ProjectListener; | |||||
| /** | /** | ||||
| * Support for the project listener event dispatching. | * Support for the project listener event dispatching. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ProjectListenerSupport | public class ProjectListenerSupport | ||||
| implements ProjectListener | implements ProjectListener | ||||
| @@ -16,4 +16,4 @@ no-name.error=No Name in Context. | |||||
| no-dir.error=No Base Directory in Context. | no-dir.error=No Base Directory in Context. | ||||
| no-parent.error=Can't set a property with parent scope when context has no parent. | no-parent.error=Can't set a property with parent scope when context has no parent. | ||||
| bad-scope.error=Unknown property scope! ({0}). | bad-scope.error=Unknown property scope! ({0}). | ||||
| bad-property.error=Property {0} must have a value of type {1}. | |||||
| bad-property.error=Property {0} must have a value of type {1}. | |||||
| @@ -14,7 +14,7 @@ import org.apache.avalon.framework.context.Context; | |||||
| /** | /** | ||||
| * Instances of this interface are used to convert between different types. | * Instances of this interface are used to convert between different types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public abstract class AbstractConverter | public abstract class AbstractConverter | ||||
| implements Converter | implements Converter | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.context.Context; | |||||
| /** | /** | ||||
| * Instances of this interface are used to convert between different types. | * Instances of this interface are used to convert between different types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Converter | public interface Converter | ||||
| { | { | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.CascadingException; | |||||
| /** | /** | ||||
| * ConverterException thrown when a problem occurs during convertion etc. | * ConverterException thrown when a problem occurs during convertion etc. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ConverterException | public class ConverterException | ||||
| extends CascadingException | extends CascadingException | ||||
| @@ -27,7 +27,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * This is the class that Task writers should extend to provide custom tasks. | * This is the class that Task writers should extend to provide custom tasks. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public abstract class AbstractContainerTask | public abstract class AbstractContainerTask | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -27,7 +27,7 @@ import org.apache.myrmidon.interfaces.type.TypeManager; | |||||
| * | * | ||||
| * TODO: Make this support classpath sub-element in future | * TODO: Make this support classpath sub-element in future | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public abstract class AbstractTypeDef | public abstract class AbstractTypeDef | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -19,7 +19,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * Class representing a condition. | * Class representing a condition. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Condition | public class Condition | ||||
| implements Component | implements Component | ||||
| @@ -11,7 +11,7 @@ package org.apache.myrmidon.framework; | |||||
| * Base class for those classes that can appear inside the build file | * Base class for those classes that can appear inside the build file | ||||
| * as stand alone data types. | * as stand alone data types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface DataType | public interface DataType | ||||
| { | { | ||||
| @@ -14,7 +14,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * Basic data type for holding patterns. | * Basic data type for holding patterns. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Pattern | public class Pattern | ||||
| implements DataType | implements DataType | ||||
| @@ -13,4 +13,4 @@ pattern.ifelse-duplicate.error=Can only set one of if/else for pattern data type | |||||
| type.no-factory.error=Unable to retrieve DataType factory from TypeManager. | type.no-factory.error=Unable to retrieve DataType factory from TypeManager. | ||||
| type.no-create.error=Unable to create datatype. | type.no-create.error=Unable to create datatype. | ||||
| type.no-id.error=Id must be specified. | |||||
| type.no-id.error=Id must be specified. | |||||
| @@ -25,7 +25,7 @@ import org.apache.myrmidon.interfaces.type.TypeManager; | |||||
| /** | /** | ||||
| * This is the property "task" to declare a binding of a datatype to a name. | * This is the property "task" to declare a binding of a datatype to a name. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class TypeInstanceTask | public class TypeInstanceTask | ||||
| extends AbstractContainerTask | extends AbstractContainerTask | ||||
| @@ -51,7 +51,7 @@ import org.apache.avalon.excalibur.i18n.Resources; | |||||
| * Starts myrmidon, loads ProjectBuilder, builds project then uses ProjectManager | * Starts myrmidon, loads ProjectBuilder, builds project then uses ProjectManager | ||||
| * to run project. | * to run project. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class CLIMain | public class CLIMain | ||||
| extends AbstractLoggable | extends AbstractLoggable | ||||
| @@ -23,4 +23,4 @@ build-failed.error=BUILD FAILED\nReason:\n{0} | |||||
| repeat.notice=Continue ? (Enter no to stop) | repeat.notice=Continue ? (Enter no to stop) | ||||
| homedir.notice=Ant Home Directory: {0} | homedir.notice=Ant Home Directory: {0} | ||||
| buildfile.notice=Ant Build File: {0} | |||||
| buildfile.notice=Ant Build File: {0} | |||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.aspects.AspectHandler; | |||||
| /** | /** | ||||
| * Manage and propogate Aspects. | * Manage and propogate Aspects. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface AspectManager | public interface AspectManager | ||||
| extends Component, AspectHandler | extends Component, AspectHandler | ||||
| @@ -15,7 +15,7 @@ import org.apache.myrmidon.interfaces.model.Project; | |||||
| /** | /** | ||||
| * Interface implemented by components that build projects from sources. | * Interface implemented by components that build projects from sources. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface ProjectBuilder | public interface ProjectBuilder | ||||
| extends Component | extends Component | ||||
| @@ -15,7 +15,7 @@ import org.apache.avalon.framework.context.Context; | |||||
| /** | /** | ||||
| * Class used to configure tasks. | * Class used to configure tasks. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Configurer | public interface Configurer | ||||
| extends Component | extends Component | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.component.Component; | |||||
| /** | /** | ||||
| * Interface for registry for ConverterInfos. | * Interface for registry for ConverterInfos. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface ConverterRegistry | public interface ConverterRegistry | ||||
| extends Component | extends Component | ||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.converter.Converter; | |||||
| /** | /** | ||||
| * Master Converter to handle converting between types. | * Master Converter to handle converting between types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface MasterConverter | public interface MasterConverter | ||||
| extends Component, Converter | extends Component, Converter | ||||
| @@ -13,7 +13,7 @@ import org.apache.avalon.framework.component.Component; | |||||
| /** | /** | ||||
| * This class deploys a .tsk file into a registry. | * This class deploys a .tsk file into a registry. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Deployer | public interface Deployer | ||||
| extends Component | extends Component | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.CascadingException; | |||||
| /** | /** | ||||
| * Exception to indicate error deploying. | * Exception to indicate error deploying. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public final class DeploymentException | public final class DeploymentException | ||||
| extends CascadingException | extends CascadingException | ||||
| @@ -20,7 +20,7 @@ import org.apache.myrmidon.interfaces.workspace.Workspace; | |||||
| /** | /** | ||||
| * Interface through which you embed Myrmidon into applications. | * Interface through which you embed Myrmidon into applications. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Embeddor | public interface Embeddor | ||||
| extends Component, Parameterizable, Initializable, Startable, Disposable | extends Component, Parameterizable, Initializable, Startable, Disposable | ||||
| @@ -15,7 +15,7 @@ import org.apache.myrmidon.interfaces.type.TypeManager; | |||||
| /** | /** | ||||
| * Frames in which tasks are executed. | * Frames in which tasks are executed. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface ExecutionFrame | public interface ExecutionFrame | ||||
| { | { | ||||
| @@ -15,7 +15,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * Engine inteface that should be implemented by all tasklet engines. | * Engine inteface that should be implemented by all tasklet engines. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Executor | public interface Executor | ||||
| extends Component | extends Component | ||||
| @@ -17,7 +17,7 @@ import org.apache.avalon.framework.component.Component; | |||||
| * TODO: Determine if projects should carry their own name. Breaks IOC but | * TODO: Determine if projects should carry their own name. Breaks IOC but | ||||
| * Can be useful as project files embed own name (or should that be description). | * Can be useful as project files embed own name (or should that be description). | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Project | public interface Project | ||||
| extends Component | extends Component | ||||
| @@ -14,7 +14,7 @@ import org.apache.myrmidon.framework.Condition; | |||||
| /** | /** | ||||
| * Targets in build file. | * Targets in build file. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Target | public class Target | ||||
| { | { | ||||
| @@ -10,7 +10,7 @@ package org.apache.myrmidon.interfaces.model; | |||||
| /** | /** | ||||
| * Imports in a build file. | * Imports in a build file. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class TypeLib | public class TypeLib | ||||
| { | { | ||||
| @@ -15,7 +15,7 @@ import org.apache.avalon.framework.component.Component; | |||||
| * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a> | * @author <a href="mailto:bloritsch@apache.org">Berin Loritsch</a> | ||||
| * @author <a href="mailto:ricardo@apache,org">Ricardo Rocha</a> | * @author <a href="mailto:ricardo@apache,org">Ricardo Rocha</a> | ||||
| * @author <a href="mailto:giacomo@apache,org">Giacomo Pati</a> | * @author <a href="mailto:giacomo@apache,org">Giacomo Pati</a> | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| * @version CVS $Revision$ $Date$ | * @version CVS $Revision$ $Date$ | ||||
| */ | */ | ||||
| public interface RoleManager | public interface RoleManager | ||||
| @@ -18,7 +18,7 @@ import org.apache.myrmidon.interfaces.type.TypeFactory; | |||||
| /** | /** | ||||
| * Create a type instance based on name. | * Create a type instance based on name. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| * @version CVS $Revision$ $Date$ | * @version CVS $Revision$ $Date$ | ||||
| */ | */ | ||||
| public class DefaultTypeFactory | public class DefaultTypeFactory | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.CascadingException; | |||||
| /** | /** | ||||
| * Exception to indicate problem with type instantiating. | * Exception to indicate problem with type instantiating. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public final class TypeException | public final class TypeException | ||||
| extends CascadingException | extends CascadingException | ||||
| @@ -10,7 +10,7 @@ package org.apache.myrmidon.interfaces.type; | |||||
| /** | /** | ||||
| * Create an instance on name. | * Create an instance on name. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| * @version CVS $Revision$ $Date$ | * @version CVS $Revision$ $Date$ | ||||
| */ | */ | ||||
| public interface TypeFactory | public interface TypeFactory | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.component.Component; | |||||
| /** | /** | ||||
| * The interface that is used to manage types. | * The interface that is used to manage types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface TypeManager | public interface TypeManager | ||||
| extends Component | extends Component | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.listeners.ProjectListener; | |||||
| /** | /** | ||||
| * This is the abstraction through which Projects are managed and executed. | * This is the abstraction through which Projects are managed and executed. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface Workspace | public interface Workspace | ||||
| extends Component | extends Component | ||||
| @@ -19,7 +19,7 @@ import java.util.StringTokenizer; | |||||
| /** | /** | ||||
| * Basic Loader that is responsible for all the hackery to get classloader to work. | * Basic Loader that is responsible for all the hackery to get classloader to work. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public final class Main | public final class Main | ||||
| { | { | ||||
| @@ -24,7 +24,7 @@ import org.apache.myrmidon.interfaces.type.TypeManager; | |||||
| /** | /** | ||||
| * Method to register a tasklib. | * Method to register a tasklib. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Ant1Tasklib | public class Ant1Tasklib | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -15,7 +15,7 @@ import org.apache.tools.ant.Task; | |||||
| /** | /** | ||||
| * Factory used to create adaptors for Ant1 tasks. | * Factory used to create adaptors for Ant1 tasks. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Ant1TypeFactory | public class Ant1TypeFactory | ||||
| extends DefaultTypeFactory | extends DefaultTypeFactory | ||||
| @@ -21,7 +21,7 @@ import org.apache.tools.ant.Task; | |||||
| /** | /** | ||||
| * Adapter of Ant1 tasks to myrmidon. | * Adapter of Ant1 tasks to myrmidon. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class TaskAdapter | public class TaskAdapter | ||||
| extends AbstractContainerTask | extends AbstractContainerTask | ||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * This is the echo task to display a message. | * This is the echo task to display a message. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Echo | public class Echo | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -28,7 +28,7 @@ import org.apache.myrmidon.framework.DataType; | |||||
| * | * | ||||
| * TODO: Determine final format of property task. | * TODO: Determine final format of property task. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Property | public class Property | ||||
| extends AbstractContainerTask | extends AbstractContainerTask | ||||
| @@ -12,4 +12,4 @@ convert.bad-float.error=Error converting object ({0}) to Float. | |||||
| convert.bad-integer.error=Error converting object ({0}) to Integer. | convert.bad-integer.error=Error converting object ({0}) to Integer. | ||||
| convert.bad-long.error=Error converting object ({0}) to Long. | convert.bad-long.error=Error converting object ({0}) to Long. | ||||
| convert.bad-short.error=Error converting object ({0}) to Short. | convert.bad-short.error=Error converting object ({0}) to Short. | ||||
| convert.bad-url.error=Error converting object ({0}) to URL. | |||||
| convert.bad-url.error=Error converting object ({0}) to URL. | |||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to byte converter | * String to byte converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToByteConverter | public class StringToByteConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to class converter | * String to class converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToClassConverter | public class StringToClassConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to double converter | * String to double converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToDoubleConverter | public class StringToDoubleConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -19,7 +19,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to file converter | * String to file converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToFileConverter | public class StringToFileConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to float converter | * String to float converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToFloatConverter | public class StringToFloatConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to integer converter. | * String to integer converter. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToIntegerConverter | public class StringToIntegerConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to long converter | * String to long converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToLongConverter | public class StringToLongConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -16,7 +16,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to short converter | * String to short converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToShortConverter | public class StringToShortConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -18,7 +18,7 @@ import org.apache.myrmidon.converter.ConverterException; | |||||
| /** | /** | ||||
| * String to url converter | * String to url converter | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class StringToURLConverter | public class StringToURLConverter | ||||
| extends AbstractConverter | extends AbstractConverter | ||||
| @@ -25,7 +25,7 @@ import org.apache.myrmidon.converter.Converter; | |||||
| /** | /** | ||||
| * Task to define a converter. | * Task to define a converter. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ConverterDef | public class ConverterDef | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -30,7 +30,7 @@ import org.apache.myrmidon.framework.AbstractContainerTask; | |||||
| /** | /** | ||||
| * Task that definesMethod to register a single converter. | * Task that definesMethod to register a single converter. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Facility | public class Facility | ||||
| extends AbstractContainerTask | extends AbstractContainerTask | ||||
| @@ -23,7 +23,7 @@ import org.apache.myrmidon.interfaces.deployer.DeploymentException; | |||||
| /** | /** | ||||
| * Task to import a tasklib. | * Task to import a tasklib. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class Import | public class Import | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -10,4 +10,4 @@ facility.multi-element.error=Expected one sub-element to configure facility. | |||||
| facility.no-namespace.error=Must specify namespace parameter. | facility.no-namespace.error=Must specify namespace parameter. | ||||
| import.no-lib.error=Must specify lib parameter. | import.no-lib.error=Must specify lib parameter. | ||||
| import.no-deploy.error=Error importing tasklib. | |||||
| import.no-deploy.error=Error importing tasklib. | |||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.framework.AbstractTypeDef; | |||||
| /** | /** | ||||
| * Task to define a type. | * Task to define a type. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class TypeDef | public class TypeDef | ||||
| extends AbstractTypeDef | extends AbstractTypeDef | ||||
| @@ -17,7 +17,7 @@ import org.apache.myrmidon.framework.AbstractContainerTask; | |||||
| /** | /** | ||||
| * This is to test self interpretation of configuration. | * This is to test self interpretation of configuration. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ConfigurationTest | public class ConfigurationTest | ||||
| extends AbstractContainerTask | extends AbstractContainerTask | ||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * This is to test whether content is added. | * This is to test whether content is added. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class ContentTest | public class ContentTest | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * Test conversion of all the primitive types. | * Test conversion of all the primitive types. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class PrimitiveTypesTest | public class PrimitiveTypesTest | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -13,7 +13,7 @@ import org.apache.myrmidon.api.TaskException; | |||||
| /** | /** | ||||
| * Test sub-elements addition. | * Test sub-elements addition. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class SubElementTest | public class SubElementTest | ||||
| extends AbstractTask | extends AbstractTask | ||||
| @@ -12,7 +12,7 @@ import org.apache.avalon.framework.ExceptionUtil; | |||||
| /** | /** | ||||
| * Default listener that emulates the old ant listener notifications. | * Default listener that emulates the old ant listener notifications. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public class DefaultProjectListener | public class DefaultProjectListener | ||||
| implements ProjectListener | implements ProjectListener | ||||
| @@ -11,7 +11,7 @@ package org.apache.myrmidon.listeners; | |||||
| * The interface to implement if you want to receive | * The interface to implement if you want to receive | ||||
| * notification of project status. | * notification of project status. | ||||
| * | * | ||||
| * @author <a href="mailto:donaldp@apache.org">Peter Donald</a> | |||||
| * @author <a href="mailto:peter@apache.org">Peter Donald</a> | |||||
| */ | */ | ||||
| public interface ProjectListener | public interface ProjectListener | ||||
| { | { | ||||
| @@ -61,4 +61,4 @@ rem Mmmmmm tasty - finished slurping args | |||||
| :end | :end | ||||
| if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" | if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat" | ||||
| set ANT_CMD_LINE_ARGS= | |||||
| set ANT_CMD_LINE_ARGS= | |||||