Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8277243

Cast to DefaultButtonModel to access getGroup() is unnecessary

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: P3 P3
    • tbd
    • 10, 11, 17
    • client-libs

      As of JDK-8182577, ButtonModel interface has the method getGroup(). Previously, whenever getGroup() was needed, the model object required casting to DefaultButtonModel.

      There are a couple of places where model object is cast to DefaultButtonModel before calling getGroup() method.

      BasicButtonUI.ButtonGroupInfo.getButtonGroupInfo() (lines 717-719):
                  ButtonModel model = activeBtn.getModel();
                  if (!(model instanceof DefaultButtonModel))
                      return false;

            aivanov Alexey Ivanov
            aivanov Alexey Ivanov
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: