Construct a RelativeLayoutTest test program.
super("RelativeLayout Tester");
Container cp = getContentPane();
cp.setLayout(new RelativeLayout(300, 150));
cp.add("80,20", adButton = new Button("MidWidth"));
cp.add("150,75", qb = new Button("Quit"));
qb.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
});
pack();