summaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/maven/plugin/nar/Test.java
diff options
context:
space:
mode:
authorMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-06 14:44:29 +0200
committerMark Donszelmann <Mark.Donszelmann@gmail.com>2009-10-06 14:44:29 +0200
commit3dca89f0015613ab3f287945965e9f92a6079cd8 (patch)
treea00619a63c55b74c16ac8116d04b21f322e1747b /src/main/java/org/apache/maven/plugin/nar/Test.java
parent75b9fcffc6709f9c65990f6d04d593d3bfb4743d (diff)
downloadmaven-nar-plugin-3dca89f0015613ab3f287945965e9f92a6079cd8.tar.gz
maven-nar-plugin-3dca89f0015613ab3f287945965e9f92a6079cd8.tar.bz2
maven-nar-plugin-3dca89f0015613ab3f287945965e9f92a6079cd8.tar.xz
maven-nar-plugin-3dca89f0015613ab3f287945965e9f92a6079cd8.zip
Reformat all source files and add licenses to tests
Diffstat (limited to 'src/main/java/org/apache/maven/plugin/nar/Test.java')
-rw-r--r--src/main/java/org/apache/maven/plugin/nar/Test.java62
1 files changed, 32 insertions, 30 deletions
diff --git a/src/main/java/org/apache/maven/plugin/nar/Test.java b/src/main/java/org/apache/maven/plugin/nar/Test.java
index 3f4edaa..e943c6b 100644
--- a/src/main/java/org/apache/maven/plugin/nar/Test.java
+++ b/src/main/java/org/apache/maven/plugin/nar/Test.java
@@ -26,60 +26,62 @@ import org.apache.maven.plugin.MojoFailureException;
/**
* Sets up a test to create
- *
+ *
* @author Mark Donszelmann
*/
-public class Test implements Executable {
+public class Test
+ implements Executable
+{
/**
* Name of the test to create
- *
+ *
* @required
* @parameter expression=""
*/
protected String name = null;
/**
- * Type of linking used for this test
- * Possible choices are: "shared" or "static".
- * Defaults to "shared".
+ * Type of linking used for this test Possible choices are: "shared" or "static". Defaults to "shared".
*
* @parameter expression=""
*/
protected String link = Library.SHARED;
/**
- * When true run this test.
- * Defaults to true;
+ * When true run this test. Defaults to true;
*
* @parameter expresssion=""
*/
- protected boolean run=true;
-
- /**
- * Arguments to be used for running this test.
- * Defaults to empty list. This option is
- * only used if run=true.
- *
- * @parameter expression=""
- */
- protected List/*<String>*/ args = new ArrayList();
-
- public String getName() throws MojoFailureException {
- if (name == null) throw new MojoFailureException("NAR: Please specify <Name> as part of <Test>");
+ protected boolean run = true;
+
+ /**
+ * Arguments to be used for running this test. Defaults to empty list. This option is only used if run=true.
+ *
+ * @parameter expression=""
+ */
+ protected List/* <String> */args = new ArrayList();
+
+ public String getName()
+ throws MojoFailureException
+ {
+ if ( name == null )
+ throw new MojoFailureException( "NAR: Please specify <Name> as part of <Test>" );
return name;
}
-
- public String getLink() {
+
+ public String getLink()
+ {
return link;
}
-
- public boolean shouldRun() {
- return run;
+
+ public boolean shouldRun()
+ {
+ return run;
}
-
- public List/*<String>*/ getArgs() {
- return args;
+
+ public List/* <String> */getArgs()
+ {
+ return args;
}
}
-