TOC PREV NEXT INDEX



Command Input


The Command Input, which appears at the bottom of the Command Window, allows the user to enter one or more Java language statements. These will be executed when the user presses the Enter key.

It is not necessary to terminate a single statement with a semicolon, as one will be added implicitly. Multiple statements may be separated by semicolons. For example, the following line may be entered into the Command Input:

import java.util.*;
Vector v = new Vector();
int i=0; while(i<8) v.addElement(String.valueOf(i++));
System.out.println(v);

Data Representations, Inc.
http://www.datarepresentations.com
support@datarepresentations.com
sales@datarepresentations.com
TOC PREV NEXT INDEX