import java.awt.*; import oracle.jdeveloper.layout.*; public class DBFileSave extends Frame { XYLayout xYLayout1 = new XYLayout(); Label l_Save = new Label(); TextField tf_Save = new TextField(); Button b_Browse = new Button(); public DBFileSave() { super(); try { jbInit(); } catch (Exception e) { e.printStackTrace(); } } private void jbInit() throws Exception { this.setTitle("File Attachments"); l_Save.setText("l_Save"); tf_Save.setText("tf_Save"); b_Browse.setLabel("Browse"); this.setLayout(xYLayout1); this.setSize(new Dimension(400, 300)); this.setBackground(SystemColor.control); this.add(l_Save, new XYConstraints(8, 19, 87, 26)); this.add(tf_Save, new XYConstraints(137, 22, 209, 31)); this.add(b_Browse, new XYConstraints(112, 92, 133, 34)); } }