-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
1.1.6
-
sparc
-
solaris_2.6
Name: el35337 Date: 09/11/98
/*
* This code creates an awt.Window with a text field on it. Once running
* you cannot type any text into the text field.
*/
//import jclass.util.*;
import java.awt.*;
//import com.sterwent.sat.extended.*;
class WindowTest
{
/** Used to test how WindowTypePanel looks.
* @param String args[] - Command line arguments
*/
static public void main(String args[])
{
Window test = new Window(new Frame());
test.setLayout( null );
test.setBounds( 50, 50, 400, 400 );
TextField txtF = new TextField( "TextField" );
txtF.setBounds( 10, 60, 100, 40 );
test.add(txtF);
test.show();
txtF.requestFocus();
}
}
(Review ID: 38505)
======================================================================