Latest bnd code
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1350613 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/aQute/bnd/service/CommandPlugin.java b/bundleplugin/src/main/java/aQute/bnd/service/CommandPlugin.java
index 34c72c2..9511637 100644
--- a/bundleplugin/src/main/java/aQute/bnd/service/CommandPlugin.java
+++ b/bundleplugin/src/main/java/aQute/bnd/service/CommandPlugin.java
@@ -3,28 +3,30 @@
import aQute.bnd.build.*;
/**
- * A plugin that makes it possible to
+ * A plugin that makes it possible to
+ *
* @author aqute
- *
*/
public interface CommandPlugin {
- /**
- * Is run before a command is executed. These plugins are called
- * in the order of declaration.
- *
- * @param project The project for which the command runs
- *
- * @param command the command name
- */
- void before(Project project, String command);
-
- /**
- * Is run after a command is executed. These plugins are
- * called in the reverse order of declaration.
- *
- * @param project The project for which the command runs
- *
- * @param command the command name
- */
- void after(Project project, String command, Throwable outcome);
+ /**
+ * Is run before a command is executed. These plugins are called in the
+ * order of declaration.
+ *
+ * @param project
+ * The project for which the command runs
+ * @param command
+ * the command name
+ */
+ void before(Project project, String command);
+
+ /**
+ * Is run after a command is executed. These plugins are called in the
+ * reverse order of declaration.
+ *
+ * @param project
+ * The project for which the command runs
+ * @param command
+ * the command name
+ */
+ void after(Project project, String command, Throwable outcome);
}