Uses of Class
chrriis.uihierarchy.UIHConfig

Packages that use UIHConfig
chrriis.uihierarchy The core package of the UIHierarchy library. 
chrriis.uihierarchy.accessor Accessor related extensions are located in this package.  
chrriis.uihierarchy.creator Package containing the creators, which are used to create components from some object representations. 
chrriis.uihierarchy.layout Layouts that map existing ones to add functionalities such as unit handling. 
chrriis.uihierarchy.util All the possible utilities for various manipulations go to this package. 
 

Uses of UIHConfig in chrriis.uihierarchy
 

Methods in chrriis.uihierarchy that return UIHConfig
static UIHConfig UIHConfig.getDefault()
          Get the default configuration, which is used when nothing specific was configured for a particular instance.
 UIHConfig UIH.getConfig()
          Get the configuration of this hierarchy instance.
 UIHConfig SingleLevelAccessor.getConfig()
          Get the configuration the accessor uses.
 

Constructors in chrriis.uihierarchy with parameters of type UIHConfig
UIH(UIHConfig uihConfig)
          Construct a hierarchy of components, using the specific configuration.
 

Uses of UIHConfig in chrriis.uihierarchy.accessor
 

Methods in chrriis.uihierarchy.accessor with parameters of type UIHConfig
 Accessor AccessorFactory.createAccessor(UIHConfig uihConfig, HLevel[] hLevels)
          Create an accessor for some levels of a hierarchy.
 ParentLevelAccessor AccessorFactory.newParentLevelAccessor(UIHConfig uihConfig, HParentLevel hParentLevel)
          Create an accessor for a single parent level of a hierarchy.
 SingleLevelAccessor AccessorFactory.newSingleLevelAccessor(UIHConfig uihConfig, HLevel hLevel)
          Create an accessor for a single level of a hierarchy.
 Accessor AccessorFactory.newAccessor(UIHConfig uihConfig, HLevel[] hLevels)
          Create an accessor for some levels of a hierarchy.
 

Uses of UIHConfig in chrriis.uihierarchy.creator
 

Methods in chrriis.uihierarchy.creator with parameters of type UIHConfig
 Component StringComponentCreator.createComponent(UIHConfig uihConfig, Container parentContainer, Object component, int level)
          Create a component from a String.
 Component NullComponentCreator.createComponent(UIHConfig uihConfig, Container parentContainer, Object component, int level)
          Create a component from a null component.
 Component ComponentCreator.createComponent(UIHConfig uihConfig, Container parentContainer, Object component, int level)
          Create a component from an object representation.
 

Uses of UIHConfig in chrriis.uihierarchy.layout
 

Methods in chrriis.uihierarchy.layout with parameters of type UIHConfig
 LayoutManager HLayoutManager.createLayout(UIHConfig uihConfig)
          Create the desired layout manager, using the UIH configuration.
 LayoutManager GridHLayout.createLayout(UIHConfig uihConfig)
           
 LayoutManager FormHLayout.createLayout(UIHConfig uihConfig)
           
 LayoutManager FlowHLayout.createLayout(UIHConfig uihConfig)
           
 LayoutManager CardHLayout.createLayout(UIHConfig uihConfig)
           
 LayoutManager BorderHLayout.createLayout(UIHConfig uihConfig)
           
 

Uses of UIHConfig in chrriis.uihierarchy.util
 

Methods in chrriis.uihierarchy.util with parameters of type UIHConfig
static int UnitParser.intPixelValue(UIHConfig uihConfig, String unitValueRepresentation)
          Convert a string representation of a value with or without a unit specification, into its pixel integer value.
static double UnitParser.doublePixelValue(UIHConfig uihConfig, String unitValueRepresentation)
          Convert a string representation of a value with or without a unit specification, into its pixel double value.