Automatic Object Creation

Silver-J

Automatic Object Creation
Previous Top 

You can create the object of the given class which is shown in the popuped list by pressing F3 key.
When you type the letter J,it will popup all the list of words that starts with J,e.g JFrame,JApplet etc.

If you want to create the object of the selected item from the popuped list then press F3 key,it will automatically create the object of that selected item class.

e.g. : If you select the JApplet world in the popup list & if you press F3 now it will insert following code into the editor automatically

JApplet obj1=new JApplet();