stubs for TFileOpenBox, cleanup putStringXY
[fanfix.git] / src / jexer / TRadioGroup.java
index c1b652352d1b4b36049be132fed9fa229d96382e..365c074e99b3655671ba2e2e38282f83a88831ad 100644 (file)
@@ -65,7 +65,7 @@ public final class TRadioGroup extends TWidget {
      * @param button new button that became selected
      */
     void setSelected(final TRadioButton button) {
-        assert (button.getSelected());
+        assert (button.isSelected());
         if (selectedButton != null) {
             selectedButton.setSelected(false);
         }
@@ -84,13 +84,9 @@ public final class TRadioGroup extends TWidget {
         final String label) {
 
         // Set parent and window
-        super(parent);
+        super(parent, x, y, label.length() + 4, 2);
 
-        setX(x);
-        setY(y);
-        setHeight(2);
         this.label = label;
-        setWidth(label.length() + 4);
     }
 
     /**
@@ -100,7 +96,7 @@ public final class TRadioGroup extends TWidget {
     public void draw() {
         CellAttributes radioGroupColor;
 
-        if (getAbsoluteActive()) {
+        if (isAbsoluteActive()) {
             radioGroupColor = getTheme().getColor("tradiogroup.active");
         } else {
             radioGroupColor = getTheme().getColor("tradiogroup.inactive");
@@ -110,7 +106,7 @@ public final class TRadioGroup extends TWidget {
             radioGroupColor, radioGroupColor, 3, false);
 
         getScreen().hLineXY(1, 0, label.length() + 2, ' ', radioGroupColor);
-        getScreen().putStrXY(2, 0, label, radioGroupColor);
+        getScreen().putStringXY(2, 0, label, radioGroupColor);
     }
 
     /**