Author: mes
Date: 2011-08-12 12:33:02 -0700 (Fri, 12 Aug 2011)
New Revision: 26543

Modified:
   
csplugins/trunk/ucsd/mes/LAFDebug-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
Log:
added combo box

Modified: 
csplugins/trunk/ucsd/mes/LAFDebug-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
===================================================================
--- 
csplugins/trunk/ucsd/mes/LAFDebug-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
  2011-08-12 18:08:53 UTC (rev 26542)
+++ 
csplugins/trunk/ucsd/mes/LAFDebug-spring/src/main/java/millhouseyyy/internal/LAFDebug.java
  2011-08-12 19:33:02 UTC (rev 26543)
@@ -7,10 +7,17 @@
 
        public LAFDebug() {
                JFrame frame = new JFrame();
+
                JPanel panel = new JPanel();
                panel.setPreferredSize(new Dimension(100,100));
+
                JButton button = new JButton("Using Spring-DM");
                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);

-- 
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