/[classpath]/classpath/javax/swing/JRadioButton.java
ViewVC logotype

Diff of /classpath/javax/swing/JRadioButton.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9 by mark, Thu Jul 22 19:45:39 2004 UTC revision 1.10 by mark, Sat Sep 4 17:14:01 2004 UTC
# Line 48  public class JRadioButton extends JToggl Line 48  public class JRadioButton extends JToggl
48      {      {
49          this(null, null);          this(null, null);
50      }      }
51        
52      public JRadioButton(Action a)      public JRadioButton(Action a)
53      {      {
54          this();          this();
# Line 59  public class JRadioButton extends JToggl Line 60  public class JRadioButton extends JToggl
60          this(null, icon);          this(null, icon);
61      }          }    
62        
63      public JRadioButton(Icon icon, boolean selected)
64      {
65        this(null, icon, selected);
66      }    
67      
68      public JRadioButton(String text)      public JRadioButton(String text)
69      {      {
70          this(text, null);          this(text, null);
71      }      }
72                
73      public JRadioButton(String text, boolean selected)
74      {
75        this(text, null, selected);
76      }
77          
78      public JRadioButton(String text, Icon icon)      public JRadioButton(String text, Icon icon)
79      {      {
80          super(text, icon);          super(text, icon);
# Line 71  public class JRadioButton extends JToggl Line 82  public class JRadioButton extends JToggl
82          contentAreaFilled = false;          contentAreaFilled = false;
83      }      }
84    
85      public JRadioButton(String text, Icon icon, boolean selected)
86      {
87      }
88            
89      public AccessibleContext getAccessibleContext()      public AccessibleContext getAccessibleContext()
90      {      {

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26