/* * (non-Javadoc) * * @see * net.rim.device.api.ui.component.LabelField#paint(net.rim.device.api.ui * .Graphics) */ protected void paint(Graphics graphics) { FieldDelegate.paint(graphics, this); }
/* * (non-Javadoc) * * @see net.rim.device.api.ui.component.LabelField#layout(int, int) */ public void layout(int width, int height) { FieldDelegate.layout(width, height, this); }
/* * (non-Javadoc) * * @see net.rim.device.api.ui.component.Field#getPreferredHeight() */ public int getPreferredHeight() { return FieldDelegate.getPreferredHeight(this); }
/* * (non-Javadoc) * * @see net.rim.device.api.ui.Field#invalidate(int, int, int, int) */ public void invalidate(int x, int y, int width, int height) { FieldDelegate.invalidate(x, y, width, height, this); }
/* * (non-Javadoc) * * @see net.rim.device.api.ui.component.Field#getPreferredWidth() */ public int getPreferredWidth() { return FieldDelegate.getPreferredWidth(this); }