예제 #1
0
 XAWTTextField(String text, XComponentPeer xwin, Container parent) {
   super(text);
   this.xwin = xwin;
   setDoubleBuffered(true);
   setFocusable(false);
   AWTAccessor.getComponentAccessor().setParent(this, parent);
   setBackground(xwin.getPeerBackground());
   setForeground(xwin.getPeerForeground());
   setFont(xwin.getPeerFont());
   setCaretPosition(0);
   addActionListener(this);
   addNotify();
 }