home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap13 / lst13_4.txt < prev    next >
Text File  |  1996-02-13  |  127b  |  8 lines

  1. for (int x=0; x<3; ++x)
  2. {
  3.     textField[x] = new TextField(5);
  4.     add(textField[x]);
  5.     textField[x].setText("0");
  6. }
  7.  
  8.