Methods Summary |
---|
public void | setFill(com.sun.perseus.j2d.PaintServer newFill)
this.fill = newFill;
renderingDirty();
|
public void | setFillOpacity(float newFillOpacity)
super.setFillOpacity(newFillOpacity);
if (fill != null) {
renderingDirty();
}
|
public void | setStroke(com.sun.perseus.j2d.PaintServer newStroke)
this.stroke = newStroke;
renderingDirty();
|
public void | setStrokeDashArray(float[] newStrokeDashArray)
strokeDashArray = newStrokeDashArray;
if (stroke != null) {
renderingDirty();
}
|
public void | setStrokeDashOffset(float newStrokeDashOffset)
strokeDashOffset = newStrokeDashOffset;
if (stroke != null && strokeDashArray != null) {
renderingDirty();
}
|
public void | setStrokeLineCap(int newStrokeLineCap)
super.setStrokeLineCap(newStrokeLineCap);
if (stroke != null) {
renderingDirty();
}
|
public void | setStrokeLineJoin(int newStrokeLineJoin)
super.setStrokeLineJoin(newStrokeLineJoin);
if (stroke != null) {
renderingDirty();
}
|
public void | setStrokeMiterLimit(float newStrokeMiterLimit)
strokeMiterLimit = newStrokeMiterLimit;
if (stroke != null && getStrokeLineJoin() == JOIN_MITER) {
renderingDirty();
}
|
public void | setStrokeOpacity(float newStrokeOpacity)
super.setStrokeOpacity(newStrokeOpacity);
if (stroke != null) {
renderingDirty();
}
|
public void | setStrokeWidth(float newStrokeWidth)
strokeWidth = newStrokeWidth;
// Only dirty rendering if the object is actually stroked.
if (stroke != null) {
renderingDirty();
}
|