peterreilly 2005/01/17 01:29:18
Modified: src/main/org/apache/tools/ant/types/optional
ScriptSelector.java
Log:
checkstyle
Revision Changes Path
1.2 +8 -8
ant/src/main/org/apache/tools/ant/types/optional/ScriptSelector.java
Index: ScriptSelector.java
===================================================================
RCS file:
/home/cvs/ant/src/main/org/apache/tools/ant/types/optional/ScriptSelector.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ScriptSelector.java 16 Jan 2005 23:37:51 -0000 1.1
+++ ScriptSelector.java 17 Jan 2005 09:29:18 -0000 1.2
@@ -106,9 +106,9 @@
public boolean isSelected(File basedir, String filename, File file) {
init();
setSelected(true);
- this.file=file;
- this.basedir=basedir;
- this.filename=filename;
+ this.file = file;
+ this.basedir = basedir;
+ this.filename = filename;
runner.addBean("basedir", basedir);
runner.addBean("filename", filename);
runner.addBean("file", file);
@@ -119,7 +119,7 @@
/**
* get the base directory
- * @return
+ * @return the base directory
*/
public File getBasedir() {
return basedir;
@@ -127,7 +127,7 @@
/**
* get the filename of the file
- * @return
+ * @return the filename of the file that is currently been tested
*/
public String getFilename() {
return filename;
@@ -135,7 +135,7 @@
/**
* get the file that is currently to be tested
- * @return
+ * @return the file that is currently been tested
*/
public File getFile() {
return file;
@@ -143,7 +143,7 @@
/**
* get state of selected flag
- * @return
+ * @return the selected flag
*/
public boolean isSelected() {
return selected;
@@ -152,7 +152,7 @@
/**
* set the selected state
* Intended for script use, not as an Ant attribute
- * @param selected
+ * @param selected the selected state
*/
public void setSelected(boolean selected) {
this.selected = selected;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]