Class VerticalChoicesPanel

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible

public class VerticalChoicesPanel extends ConflictPanel
VerticalChoicesPanel is a conflict panel for the Listing Merge. It lays out rows of information vertically in a table format. Each row can be a header row, an information row, a single choice row, or a multiple choice row.
Single choice rows provide a radio button and are used when a single choice must be made from multiple rows of choices.
Multiple choice rows provide a check box and are used when more than one choice can be made from multiple rows of choices.
Note: Single choice and multiple choice rows are not intended to be intermixed on the same panel.
A header label can be set. This appears above the row table. The text for the header label should be HTML.
See Also:
  • Constructor Details

    • VerticalChoicesPanel

      public VerticalChoicesPanel()
    • VerticalChoicesPanel

      public VerticalChoicesPanel(boolean isDoubleBuffered)
  • Method Details

    • clear

      public void clear()
      Removes header text for this panel and all table/row information. It also sets the columnCount back to 1.
      Specified by:
      clear in class ConflictPanel
    • allChoicesAreResolved

      public boolean allChoicesAreResolved()
      Returns true if the user made a selection for every conflict in the table.
      Specified by:
      allChoicesAreResolved in class ChoiceComponent
      Returns:
      true if all conflicts are resolved.
    • getNumConflictsResolved

      public int getNumConflictsResolved()
      Description copied from class: ChoiceComponent
      Returns the number of conflicts that have currently been resolved in this GUI component.
      Specified by:
      getNumConflictsResolved in class ChoiceComponent
      Returns:
      the number resolved.
    • getSelectedOptions

      protected int getSelectedOptions()
    • allChoicesAreSame

      public boolean allChoicesAreSame()
      Returns true if the user made a selection for every conflict in the table and made the same choice for every row.
      Specified by:
      allChoicesAreSame in class ChoiceComponent
      Returns:
      true if all conflicts are resolved the same.
    • getUseForAllChoice

      public int getUseForAllChoice()
      Description copied from class: ConflictPanel
      Returns an int value that indicates the choices currently selected for the Use For All choice in the conflict resolution table. If there are multiple rows of choices, then all selected choices must be the same for each row or 0 is returned. Each button or check box has an associated value that can be bitwise 'OR'ed together to get the entire choice for the row.
      Specified by:
      getUseForAllChoice in class ConflictPanel
      Returns:
      the choice(s) currently selected.
    • removeAllListeners

      public void removeAllListeners()
      Description copied from class: ConflictPanel
      Removes all listeners that were set on this panel for indicating user choices were being made or changed.
      Specified by:
      removeAllListeners in class ConflictPanel
    • hasChoice

      public boolean hasChoice()
      Description copied from class: ConflictPanel
      Returns true if the conflict panel currently provides at least one choice to the user.
      Specified by:
      hasChoice in class ConflictPanel
      Returns:
      true if the panel has a choice the user can select.