Uses of Package
rs.sol.soloist.server.guiconfiguration.nonvisualcompoments

Packages that use rs.sol.soloist.server.guiconfiguration.nonvisualcompoments
rs.sol.soloist.server.guiconfiguration.construction Provides root GUI class and the main class that deals with widget interaction. 
rs.sol.soloist.server.guiconfiguration.nonvisualcompoments Provides classes that capture widgets' layout specification. 
 

Classes in rs.sol.soloist.server.guiconfiguration.nonvisualcompoments used by rs.sol.soloist.server.guiconfiguration.construction
GUIBufferComponent
          An invisible widget that buffers value(s) received on input input pin (GUIBufferComponent.ipInput() method).
 

Classes in rs.sol.soloist.server.guiconfiguration.nonvisualcompoments used by rs.sol.soloist.server.guiconfiguration.nonvisualcompoments
FilteringLogic
          A class-enumeration that can be used to control the logic bahavior of the GUICollectionFilter widget.
GUIAndGate
          An invisible widget that performs logical AND operation on Boolean values currently on this widget's input pins a (GUIAndGate.ipA() method) and b (GUIAndGate.ipB() method).
GUIBooleanFilter
          A type of filtering widget with a filtering condition that is meant to determine whether the value on input input pin (ipInput() method) is TRUE or FALSE.
GUIBufferComponent
          An invisible widget that buffers value(s) received on input input pin (GUIBufferComponent.ipInput() method).
GUIClassInstancesSAPComponent
          An abstract base class for service access point components that fetch instances typed with the same class.
GUICollectionFilter
          An invisible widget that filters values from the collection.
GUIComparationFilter
          A type of filtering widget with a filtering condition that is meant to determine whether the value on input input pin (ipInput() method) is equal to the value specified in this widget (GUIComparationFilter.setComparedWith(IClassifierInstance) method).
GUIConformsToFilter
          A type of filtering widget with a filtering condition that is meant to determine whether the value on input input pin (ipInput() method) conforms to (is instance of) the type (class) specified in this widget (GUIConformsToFilter.setType(IClassifier)).
GUIFilterComponent
          An abstract base class for all invisible widgets that perform different types of filtering of values on input input pin (GUIFilterComponent.ipInput() method).
GUIFindAllInstancesSAPComponent
          An invisible widget that fetches all objects (of a class set by GUIClassInstancesSAPComponent.setClassFQName(String) method).
GUIFindSingleInstanceSAPComponent
          An invisible widget that fetches an object (of a class set by GUIClassInstancesSAPComponent.setClassFQName(String) method) which has a value on its slot (defined by GUIFindSingleInstanceSAPComponent.setPropertyName(String) method) equal to the value specified in this widget (by GUIFindSingleInstanceSAPComponent.setEqualToValue(IClassifierInstance)).
GUIGetElementAt
          An invisible widget that extracts an element at the specified index provided on the index input pin (GUIGetElementAt.ipIndex() method) from the collection provided on the input input pin (GUIGetElementAt.ipInput() method), and directs it to the output output pin (GUIGetElementAt.opOutput() method).
GUIIndexOfElement
          An invisible widget that puts the index of the element provided on the element input pin (GUIIndexOfElement.ipElement() method) in the collection provided on the input input pin (GUIIndexOfElement.ipInput()), to the output output pin (GUIIndexOfElement.opOutput() method).
GUILogicGateComponent
          An abstract base class for all invisible widgets that perform logic operations, such as AND, OR, and NOT.
GUIMultiplicityFilter
          A type of filtering widget with a filtering condition that is meant to determine whether the number of values on input input pin (ipInput() method) conform to multiplicity conditions specified in this widget (GUIMultiplicityFilter.setLowerBound(int) method and GUIMultiplicityFilter.setUpperBound(int) method).
GUINonVisualComponent
          An abstract base class for all invisible widgets.
GUINotGate
          An invisible widget that performs logical NOT operation on Boolean value currently on this widget's input pin input (GUINotGate.ipInput() method).
GUINullFilter
          A type of filtering widget with a filtering condition that is meant to determine whether the value on input input pin (ipInput() method) is null or not.
GUIOrGate
          An invisible widget that performs logical OR operation on Boolean values currently on this widget's input pins a (GUIOrGate.ipA() method) and b (GUIOrGate.ipB() method).
GUIRelayComponent
          An invisible widget that accepts the value(s) on its relay input pin (GUIRelayComponent.ipRelay() method) and immediately forwards it/them to the relay output pin (GUIRelayComponent.opRelay() method).
GUIServiceAccessPointComponent
          An abstract base class for all invisible widgets that serve to access domain object space and fetch domain objects.
GUISlotListenerComponent
          An invisible widget that accepts an object on element input pin (GUISlotListenerComponent.ipElement() method), and provides objects linked over the slot for property set by calling GUISlotListenerComponent.setPropertyFQName(String) method, on its value output pin (GUISlotListenerComponent.opValue() method).
GUITransformerComponent
          An invisible widget that accepts an object on input input pin (GUITransformerComponent.ipInput() method) and performs a transformation (depending on a type of transformer object set by calling GUITransformerComponent.setTransformer(Transformer) method), to other objects that are provided on ouput output pin (GUITransformerComponent.opOutput() method) after transformation.
ToSlotTransformer
          A handler that transforms an object provided by the owner GUITransformerComponent to the ISlot that correspond to the property specified either by ToSlotTransformer.setPropertyFQName(String) method or during construction of this object using ToSlotTransformer.create(IProperty) method.
ToSlotValueByPropertyTransformer
          A handler that transforms an object provided by the owner GUITransformerComponent the same way as ToSlotValueTransformer do, except from the fact that this handler adds additional filtering based on the value on one of the object's properties.
ToSlotValueTransformer
          A handler that transforms an object provided by the owner GUITransformerComponent to the ClassifierInstance on the object's slot (specified by calling ToSlotValueTransformer.setPropertyFQName(String) method of this transformer or during construction of this transformer using factory ToSlotValueTransformer.create(IProperty) method).
Transformer
          An abstract base class for all object transforming handlers.