Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
import java.awt.*;
class mylist2 extends Frame
{
List list;
public mylist2()
{
super("list demo");
setLayout(new BorderLayout());
list = new List(5);
list.add("Mercury");
list.add("Venus");
list.add("Earth");
list.add("JavaSoft");
list.add("Mars");
add(list,BorderLayout.NORTH);
//Components are initially visible, with the exception of top level components such as Frame objects
}
public static void main(String args[])
{
mylist2 mylist2Obj = new mylist2();
mylist2Obj.setSize(400,400);
mylist2Obj.setVisible(true);
}
}