Browse Source

bugzilla bug#30307 ; need a way of adding typedef'd image operations.

submitted by Christopher Lenz


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277511 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 20 years ago
parent
commit
3db972a2b0
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      src/main/org/apache/tools/ant/taskdefs/optional/image/Image.java

+ 11
- 0
src/main/org/apache/tools/ant/taskdefs/optional/image/Image.java View File

@@ -153,6 +153,17 @@ public class Image extends MatchingTask {
instructions.add(instr);
}


/**
* Adds an ImageOperation to chain.
* Adds an ImageOperation to the chain.
* @param instr The ImageOperation to append to the chain
* @since Ant 1.7
*/
public void add(ImageOperation instr) {
addImageOperation(instr);
}

/**
* Executes all the chained ImageOperations on the file
* specified.


Loading…
Cancel
Save