コード例 #1
0
ファイル: TextField.java プロジェクト: Enough-Software/glaze
 /*
  * (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);
 }
コード例 #2
0
ファイル: TextField.java プロジェクト: Enough-Software/glaze
 /*
  * (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);
 }
コード例 #3
0
ファイル: TextField.java プロジェクト: Enough-Software/glaze
 /*
  * (non-Javadoc)
  *
  * @see net.rim.device.api.ui.component.Field#getPreferredHeight()
  */
 public int getPreferredHeight() {
   return FieldDelegate.getPreferredHeight(this);
 }
コード例 #4
0
ファイル: TextField.java プロジェクト: Enough-Software/glaze
 /*
  * (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);
 }
コード例 #5
0
ファイル: TextField.java プロジェクト: Enough-Software/glaze
 /*
  * (non-Javadoc)
  *
  * @see net.rim.device.api.ui.component.Field#getPreferredWidth()
  */
 public int getPreferredWidth() {
   return FieldDelegate.getPreferredWidth(this);
 }