FileDocCategorySizeDatePackage
ImageOperation.javaAPI DocApache Ant 1.702070Wed Dec 13 06:16:24 GMT 2006org.apache.tools.ant.types.optional.image

ImageOperation

public abstract class ImageOperation extends org.apache.tools.ant.types.DataType
see
org.apache.tools.ant.taskdefs.optional.image.Image

Fields Summary
protected Vector
instructions
Constructors Summary
Methods Summary
public voidaddDraw(Draw instr)
Add a draw to the operation.

param
instr the draw to add.

        instructions.add(instr);
    
public voidaddRectangle(Rectangle instr)
Add a rectangle to the operation.

param
instr the rectangle to add.

        instructions.add(instr);
    
public voidaddRotate(Rotate instr)
Add a rotate to the operation.

param
instr the rotate to add.

     // CheckStyle:VisibilityModifier ON

                     
        
        instructions.add(instr);
    
public voidaddScale(Scale instr)
Add a scale to the operation.

param
instr the scale to add.

        instructions.add(instr);
    
public voidaddText(Text instr)
Add text to the operation.

param
instr the text to add.

        instructions.add(instr);