Uses of Class
rs.sol.soloist.server.guiconfiguration.style.GUISettingFeature

Packages that use GUISettingFeature
rs.sol.soloist.server.guiconfiguration.construction Provides root GUI class and the main class that deals with widget interaction. 
rs.sol.soloist.server.guiconfiguration.style Provides classes that capture data formatting of data type instances, domain objects, and model elements. 
 

Uses of GUISettingFeature in rs.sol.soloist.server.guiconfiguration.construction
 

Methods in rs.sol.soloist.server.guiconfiguration.construction that return GUISettingFeature
 GUISettingFeature GUIComponent.getFeature(rs.sol.soloist.server.uml.concepts.IElement el, java.lang.String name)
          Returns the GUISettingFeature with the given name in the GUIContext of this widget that describes the given element.
 GUISettingFeature GUIComponent.getFeature(java.lang.String name)
          Returns the GUISettingFeature with the given name in the GUIContext of this widget.
 

Uses of GUISettingFeature in rs.sol.soloist.server.guiconfiguration.style
 

Subclasses of GUISettingFeature in rs.sol.soloist.server.guiconfiguration.style
 class GUIBindingsFeature
          A GUISettingFeature that provides a collection of bindings.
 class GUICommandsFeature
          A GUISettingFeature that provides a collection of Commands.
 class GUIDateTimeTextFeature
          A GUISettingFeature that provides format and pattern for displaying datetime values in the GUI.
 class GUIDefaultNavigatorFeature
          A GUISettingFeature that provides a default way for navigating over the object space, that is, for specifying the elements that are rendered as subnodes of a GUI item in tree views.
 class GUIDefaultTextFeature
          A GUISettingFeature that provides default presentation of text in the GUI.
 class GUIMultitypingFeature
          Deprecated.  
 class GUINavigatorFeature
          A GUISettingFeature that provides a way for navigating over the object space, for specifying the elements that are rendered as subnodes of a GUI item in tree views.
 class GUINumberTextFeature
          A GUISettingFeature that provides format and pattern for displaying numerical values in the GUI.
 class GUIPictureFeature
          A GUISettingFeature that describes a pictorial representation.
 class GUITextFeature
          A GUISettingFeature that describes a textual representation.
 

Fields in rs.sol.soloist.server.guiconfiguration.style with type parameters of type GUISettingFeature
 IAssociationEndInstance<GUISettingFeature> GUIItemSetting.features
          Deprecated. Not for public use.
 IAssociationEndInstance<GUISettingFeature> GUIContext.features
          Deprecated. Not for public use.
 

Methods in rs.sol.soloist.server.guiconfiguration.style that return GUISettingFeature
 GUISettingFeature GUIContext.getFeature(rs.sol.soloist.server.uml.concepts.IElement el, java.lang.String name)
          Returns the GUISettingFeature with specified name from the GUIItemSetting which best mathes the specified element and has the feature with the given name.
 GUISettingFeature GUIItemSetting.getFeature(java.lang.String name)
          Returns the GUISettingFeature with the given name, owned or inherited from the owner context, or null if such does not exist.
 GUISettingFeature GUIContext.getFeature(java.lang.String name)
          Returns the owned GUISettingFeature with the given name or, if such does not exist, it returns GUISettingFeature inherited from the super-context(s).
 GUISettingFeature GUIItemSetting.getOwnedFeature(java.lang.String name)
          Returns the owned GUISettingFeature with the given name or null if such does not exist.
 GUISettingFeature GUIContext.getOwnedFeature(java.lang.String name)
          Returns the owned GUISettingFeature with the given name.
 

Methods in rs.sol.soloist.server.guiconfiguration.style that return types with arguments of type GUISettingFeature
 java.util.List<GUISettingFeature> GUIItemSetting.getFeatures()
          Returns the collection of owned features.
 java.util.List<GUISettingFeature> GUIContext.getFeatures()
          Returns the collection of all owned features.
 

Methods in rs.sol.soloist.server.guiconfiguration.style with parameters of type GUISettingFeature
 void GUIItemSetting.addFeature(GUISettingFeature f)
          Adds a feature to a collection of owned features.
 void GUIContext.addFeature(GUISettingFeature f)
          Add the new feature to this context.
 void GUIItemSetting.removeFeature(GUISettingFeature f)
          Removes a feature from a collection of owned features.
 void GUIContext.removeFeature(GUISettingFeature f)
          Removes given feature from this context.