You are on page 1of 1

package artifacts;

public class newspaper {


public static void main (string[ args]) {
Frame f = new Frame ("MyListDemo");
f.seLayout(new FlowLayout());
f.setSize(500,500);
f.setVisible(true);

List 1 = new List (5, true);


1.add ("Bbc");
1.add ("Hindustan Times");
1.add ("Times of India");
1.add ("Inqilaab");
1.add ("Midday0");
1.select (1);
String s=1 getSelectItem();
System.out.printIn(s);
f.add(1);
f.addWindowListener (new WindowAdapter()) {
public void windowClosing (WindowEvent we) {
System.exit(0);
}
}
}
}

You might also like