Class Summary |
AbstractBiDiPipe |
Abstract base for pipes that are bi-directional (accept inputs and outputs). |
AbstractPipe |
Base class for the Pipe interface. |
BeanEndpoint |
A pipe endpoint that outputs its input to bean property (ie via set/get
methods on a target object). |
ButtonEndpoint |
A pipe endpoint that connects a boolean input to the selected state of a SWT
button (usually a checkbox or toggle button). |
DataObjectCopyPipe |
A pipe that inputs a data object and outputs a clone. |
FormPanel |
Utility base class for panels that uses the pipes framework to
handle form editing. |
FormPreferencePage |
Base class for preference pages based on editing a value using forms
framework pipes. |
Forms |
Utility methods for form creation/management. |
JavaBeanPropertyPipe |
A pipe that inputs a data bean and outputs the value of one of its
properties. |
LabelizerPipe |
A pipe that turns a value into a UI label and vice-versa. |
MultiPipe |
A multiplex pipe that outputs its input to a list of children. |
NumberEndpoint |
A pipe endpoint that connects its input to SWT number-like widgets
(Scale, Slider, and Spinner currently). |
PipeEndpoint |
Base class for pipe endpoints: pipe segments that put their input into a
non-pipe (eg a UI control). |
Pipes |
Pipe utility methods. |
PropertyPipe |
A pipe that inputs a data object and outputs the value of one of
its properties. |
RadioEndpoint |
A pipe endpoint that allows selection of a value from a list of radio
buttons. |
TextEndpoint |
A pipe endpoint that connects its input to SWT text-like widgets
(Text, Combo, and Spinner currently). |
TranslatorPipe |
A pipe that outputs a transformed version of its input using a
ITranslator . |