Example #1
0
 /**
  * Flag to recursively apply the action. Defaults to false.
  *
  * @param recursive True for recursive operation.
  */
 public void setRecursive(boolean recursive) {
   super.setInternalRecursive(recursive);
 }
Example #2
0
 /**
  * The comment to apply to all files being labelled.
  *
  * @param comment The new comment value
  */
 public void setComment(String comment) {
   super.setInternalComment(comment);
 }
Example #3
0
 /**
  * The filename to act upon. If no file is specified then the task acts upon the project.
  *
  * @param filename The new file value
  */
 public final void setFile(String filename) {
   super.setInternalFilename(filename);
 }