import vp.*; import java.awt.*; public class VindueMedGentagTekst extends Frame { GentagTekst gentagtekst1 = new GentagTekst(); public VindueMedGentagTekst() { try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } private void jbInit() throws Exception { this.setSize(new Dimension(319, 247)); this.setLayout(null); gentagtekst1.setTekst("ryst!"); gentagtekst1.setBounds(new Rectangle(177, 190, 111, 28)); this.add(gentagtekst1, null); } }