< prev index next >

src/java.desktop/share/classes/javax/swing/ButtonGroup.java

Print this page

        

@@ -67,11 +67,13 @@
  * @since 1.2
  */
 @SuppressWarnings("serial")
 public class ButtonGroup implements Serializable {
 
-    // the list of buttons participating in this group
+    /**
+     * The list of buttons participating in this group.
+     */
     protected Vector<AbstractButton> buttons = new Vector<AbstractButton>();
 
     /**
      * The current selection.
      */
< prev index next >