FileDocCategorySizeDatePackage
ExclusiveSelectionActionPerformer.javaAPI DocAzureus 3.0.3.42146Thu Dec 18 10:30:44 GMT 2003org.gudy.azureus2.ui.swt.config

ExclusiveSelectionActionPerformer

public class ExclusiveSelectionActionPerformer extends Object implements IAdditionalActionPerformer
author
Olivier

Fields Summary
boolean
selected
org.eclipse.swt.widgets.Button[]
buttons
Constructors Summary
public ExclusiveSelectionActionPerformer(org.eclipse.swt.widgets.Button[] buttons)

  
     
    this.buttons = buttons;
  
Methods Summary
public voidperformAction()

    if(buttons == null)
      return;
    if(!selected)
      return;
    for(int i = 0 ; i < buttons.length ; i++) {
      buttons[i].setSelection(false);
      buttons[i].notifyListeners(SWT.Selection,new Event());
    }
  
public voidsetIntValue(int value)

    
  
public voidsetSelected(boolean selected)

    this.selected = selected;
  
public voidsetStringValue(java.lang.String value)