org.zaval.lw.theme.p3d
Class LwMBarBorder
java.lang.Object
|
+--org.zaval.lw.LwView
|
+--org.zaval.lw.theme.p3d.LwMBarBorder
- All Implemented Interfaces:
- Validationable
- public class LwMBarBorder
- extends LwView
|
Method Summary |
void |
paint(java.awt.Graphics g,
int x,
int y,
int w,
int h,
Layoutable d)
Paints the view using the given width and height. |
| Methods inherited from class org.zaval.lw.LwView |
calcPreferredSize, getBottom, getLeft, getPreferredSize, getRight, getTop, getType, invalidate, isValid, ownerChanged, paint, recalc, setType, validate |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
LwMBarBorder
public LwMBarBorder(boolean state)
paint
public void paint(java.awt.Graphics g,
int x,
int y,
int w,
int h,
Layoutable d)
- Description copied from class:
LwView
- Paints the view using the given width and height. The location where the
view has to be painted is determined with the
x and y
coordinates. This abstract method has to be implemented to define a "face" for the view.
- Overrides:
paint in class LwView
- Following copied from class:
org.zaval.lw.LwView
- Parameters:
g - the specified context to be used for painting.x - the x coordinate.y - the y coordinate.w - the width of the view.h - the height of the view.d - the owner component.
|