Constructors Summary |
---|
public ChangeSelectionActionPerformer(org.eclipse.swt.widgets.Control[] controls)
this.controls = controls;
|
public ChangeSelectionActionPerformer(org.eclipse.swt.widgets.Control control)
this.controls = new Control[]{ control };
|
public ChangeSelectionActionPerformer(Parameter p)
this.controls = p.getControls();
|
public ChangeSelectionActionPerformer(Parameter p1, Parameter p2)
this( new Parameter[]{ p1, p2 });
|
public ChangeSelectionActionPerformer(Parameter[] params)
List c = new ArrayList();
for (int i=0;i<params.length;i++){
Control[] x = params[i].getControls();
for (int j=0;j<x.length;j++){
c.add( x[j] );
}
}
controls = new Control[c.size()];
c.toArray( controls );
|
public ChangeSelectionActionPerformer(org.eclipse.swt.widgets.Control[] controls, boolean _reverse_sense)
this.controls = controls;
reverse_sense = _reverse_sense;
|