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

BasicShape

public abstract class BasicShape extends ImageOperation implements DrawOperation
Draw a basic shape

Fields Summary
protected int
stroke_width
protected String
fill
protected String
stroke
Constructors Summary
Methods Summary
public voidsetFill(java.lang.String col)
Set the fill attribute.

param
col the color value to use.

    // CheckStyle:VisibilityModifier ON


                    
        
        fill = col;
    
public voidsetStroke(java.lang.String col)
Set the stroke attribute.

param
col the color value to use.

        stroke = col;
    
public voidsetStrokewidth(int width)
Set the stroke width attribute.

param
width the value to use.

        stroke_width = width;