Lines Matching refs:row

178     public NoEventsTest(int row, int col, boolean focusable, boolean resizable) {
179 super("Frame" + row + "" + col);
180 TestPanel panel = new TestPanel(row, col);
182 row = NoEventsTest.DEF_ROW;
191 setBounds(NoEventsTest.DEF_LEFT + DEF_WIDTH*col, DEF_TOP + DEF_HEIGHT*row, DEF_WIDTH, DEF_HEIGHT);
202 public TestWindow(int row, int col, boolean focusable, Frame owner) {
204 setName("Window" + row + "" + col);
205 TestPanel panel = new TestPanel(row, col);
207 row = NoEventsTest.DEF_ROW;
217 setBounds(NoEventsTest.DEF_LEFT + NoEventsTest.DEF_WIDTH*col, NoEventsTest.DEF_TOP + NoEventsTest.DEF_HEIGHT*row, NoEventsTest.DEF_WIDTH, NoEventsTest.DEF_HEIGHT);
225 public TestDialog(int row, int col, boolean focusable, boolean resizable, Frame owner) {
227 setName("Dialog" + row + "" + col);
228 TestPanel panel = new TestPanel(row, col);
230 row = NoEventsTest.DEF_ROW;
240 setBounds(NoEventsTest.DEF_LEFT + NoEventsTest.DEF_WIDTH*col, NoEventsTest.DEF_TOP + NoEventsTest.DEF_HEIGHT*row, NoEventsTest.DEF_WIDTH, NoEventsTest.DEF_HEIGHT);
280 public TestPanel(int row, int col) {
283 add(b = new Button("press"+ row + "" + col));
291 add(t = new TextField("text" + row + "" + col));
301 list.setName("list" + row + "" + col);
305 check.setName("check" + row + "" + col);
312 choice.setName("choice" + row + "" + col);
321 can.setName("canvas" + row + "" + col);
325 ta.setName("textarea" + row + "" + col);
329 bar.setName("scrollbar" + row + "" + col);
336 ch1.setName("checkbox1 " + row + "" + col);
337 ch2.setName("checkbox2 " + row + "" + col);
348 bigButton.setName("bigbutton" + row + "" + col);