From 2723657f3679447dbd9a9dcb056d09bd910599fe Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Tue, 2 Jun 2015 16:41:22 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 8e5a634..c332482 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -101,9 +101,9 @@ public class TestingList extends Panel { private javax.swing.JScrollPane jScrollPane1; private javax.swing.JTextArea txtOutput; // End of variables declaration//GEN-END:variables - private JButton remove; - private JButton appear; - private JCheckBox cb[]=new JCheckBox[10]; + JButton remove; + JButton appear; + JCheckBox cb[]=new JCheckBox[10]; @@ -118,14 +118,14 @@ public class TestingList extends Panel { cb[i]=new JCheckBox("checkbox:"+i); cb[i].setVisible(false); } - //jScrollPane1.add(p); - jScrollPane1.add(remove); - jScrollPane1.add(appear); + fr.add(p); + p.add(remove); + p.add(appear); for(int i=0;i<10;i++) { - jScrollPane1.add(cb[i]); + p.add(cb[i]); } - //fr.setVisible(true); - //fr.setSize(400,400); + fr.setVisible(true); + fr.setSize(400,400); } public void hookUpEvents() {