Author: mes
Date: 2011-08-15 10:34:02 -0700 (Mon, 15 Aug 2011)
New Revision: 26556

Modified:
   
csplugins/trunk/ucsd/mes/LAFDebug-no-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
Log:
added jcombo box to produce problem

Modified: 
csplugins/trunk/ucsd/mes/LAFDebug-no-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
===================================================================
--- 
csplugins/trunk/ucsd/mes/LAFDebug-no-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
       2011-08-15 16:01:32 UTC (rev 26555)
+++ 
csplugins/trunk/ucsd/mes/LAFDebug-no-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
       2011-08-15 17:34:02 UTC (rev 26556)
@@ -7,12 +7,19 @@
 
        public LAFDebug() {
                JFrame frame = new JFrame();
+
                JPanel panel = new JPanel();
                panel.setPreferredSize(new Dimension(100,100));
+
                JButton button = new JButton("NO spring");
                panel.add(button);
+
+               Object[] names = new Object[]{"homer","marge","lisa"};
+               JComboBox combo = new JComboBox(names);
+               panel.add(combo);
+
                frame.add(panel);
                frame.pack();
-//             frame.setVisible(true);
+               frame.setVisible(true);
        }
 }

-- 
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en.

Reply via email to