Lines Matching refs:command
78 PrintFrame.command = PrintFrame.fileName = null; in reinitialize()
96 static TextField command = null; field in PrintUtil.PrintFrame
127 command.setEditable(true); in PrintFrame()
140 if (command == null) in addLabelsAndFields()
141 command = new TextField("lp" /* NO18N */, 10); in addLabelsAndFields()
143 add(command, gbc); in addLabelsAndFields()
154 command.addActionListener(al); in addLabelsAndFields()
242 dest = command.getText().trim(); in close()
267 private void print(String command) throws IOException { in print() argument
268 Thread printThread = new PrintThread(command); in print()
291 command.setEditable(true); in itemStateChanged()
298 command.setEditable(false); in itemStateChanged()
331 command.setEditable(false); in actionPerformed()
366 private String command; field in PrintUtil.PrintFrame.PrintThread
369 public PrintThread(String command) { in PrintThread() argument
370 this.command = command; in PrintThread()
376 .exec(command + " " /* NO18N */ + defaultFileName); in run()