diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/CommandLauncher.java b/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/CommandLauncher.java new file mode 100644 index 000000000..b5906f09e --- /dev/null +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/CommandLauncher.java @@ -0,0 +1,40 @@ +/* + * 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.framework.exec; + +import java.io.IOException; +import org.apache.myrmidon.api.TaskException; + +/** + * This is the interface implemented by objects which are capable of + * lauching a native command. Each different implementation is likely + * to have a different strategy or be restricted to specific platform. + * + *
It is expected that the user will get a reference to the
+ * CommandLauncher most appropriate for their environment.