package jalview.gui; import javax.swing.*; public class GFeatureSelector extends JPanel { public GFeatureSelector() { try { jbInit(); } catch (Exception ex) { ex.printStackTrace(); } } private void jbInit() throws Exception { jLabel1.setText("Feature"); this.add(jLabel1); } JLabel jLabel1 = new JLabel(); }