Class marimba.gui.ShapeWidget
All Packages Class Hierarchy This Package Previous Next Index
Class marimba.gui.ShapeWidget
java.lang.Object
|
+----marimba.gui.Widget
|
+----marimba.gui.ShapeWidget
- public class ShapeWidget
- extends Widget
A graphical shape widget.
- Version:
- 1.3, 10/01/96
- Author:
- Arthur van Hoff
-
filled
- The shape can fill itself.
-
line
- The shape can draw a line in the foreground color.
-
ShapeWidget()
- Constructor.
-
getProperties(PropertyList)
- Get the properties of this widget.
-
hasLine()
- Check if the shape draws a line.
-
isFilled()
- Check if the shape is filled.
-
setFilled(boolean)
- Let the shape fill itself or not.
-
setLine(boolean)
- Let the shape draw a line or not.
-
setProperties(PropertyList)
- Set the properties of this widget.
filled
public boolean filled
- The shape can fill itself.
- See Also:
- isFilled, setFilled
line
public boolean line
- The shape can draw a line in the foreground color.
- See Also:
- hasLine, setLine
ShapeWidget
public ShapeWidget()
- Constructor.
getProperties
public void getProperties(PropertyList list)
- Get the properties of this widget.
- Overrides:
- getProperties in class Widget
setProperties
public void setProperties(PropertyList list)
- Set the properties of this widget.
- Overrides:
- setProperties in class Widget
isFilled
public boolean isFilled()
- Check if the shape is filled.
- See Also:
- filled
setFilled
public void setFilled(boolean filled)
- Let the shape fill itself or not.
- See Also:
- filled
hasLine
public boolean hasLine()
- Check if the shape draws a line.
- See Also:
- line
setLine
public void setLine(boolean line)
- Let the shape draw a line or not.
- See Also:
- line
All Packages Class Hierarchy This Package Previous Next Index