Uses of Class
chrriis.uihierarchy.SingleLevelAccessor

Packages that use SingleLevelAccessor
chrriis.uihierarchy The core package of the UIHierarchy library. 
chrriis.uihierarchy.accessor Accessor related extensions are located in this package.  
chrriis.uihierarchy.constraints Package containing the layout Constraints classes, which are associated to components in order to lay them out correctly. 
 

Uses of SingleLevelAccessor in chrriis.uihierarchy
 

Subclasses of SingleLevelAccessor in chrriis.uihierarchy
 class ParentLevelAccessor
          An accessor for a single level accessor that is manipulating a parent level.
 

Methods in chrriis.uihierarchy that return SingleLevelAccessor
 SingleLevelAccessor UIHException.getAccessor()
          Get an accessor to the level that failed.
 SingleLevelAccessor SingleLevelAccessor.previous()
          Create an accessor for the previous sibbling.
 SingleLevelAccessor SingleLevelAccessor.next()
          Create an accessor for the next sibbling.
 SingleLevelAccessor SingleLevelAccessor.parent()
          Create an accessor for the parent.
 

Methods in chrriis.uihierarchy with parameters of type SingleLevelAccessor
 UIH.SingleLevelHandler UIH.add(SingleLevelAccessor accessor)
          Add a child level and its sub levels from an accessor of a single level.
 

Constructors in chrriis.uihierarchy with parameters of type SingleLevelAccessor
UIHException(SingleLevelAccessor accessor, String message)
          Construct a UIHException.
UIHException(SingleLevelAccessor accessor, Throwable target)
          Construct a UIHException, nesting a cause.
UIHException(SingleLevelAccessor accessor, String message, Throwable target)
          Construct a UIHException, nesting a cause.
 

Uses of SingleLevelAccessor in chrriis.uihierarchy.accessor
 

Methods in chrriis.uihierarchy.accessor that return SingleLevelAccessor
 SingleLevelAccessor AccessorFactory.newSingleLevelAccessor(UIHConfig uihConfig, HLevel hLevel)
          Create an accessor for a single level of a hierarchy.
 

Uses of SingleLevelAccessor in chrriis.uihierarchy.constraints
 

Methods in chrriis.uihierarchy.constraints with parameters of type SingleLevelAccessor
 Object SpringHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a Spring layout, if the parameter is a String.
 Object NullHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a null layout, if the parameter is a String.
 Object LayoutHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints of a component.
 Object GridBagHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a gridbag layout, if the parameter is a String.
 Object FormHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a Form layout, if the parameter is a String.
 Object FlowHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a flow layout.
 Object ExplicitHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for an Explicit layout, if the parameter is a String.
 Object BoxHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a Box layout, if the parameter is a String.
 Object BorderHConstraints.createConstraints(SingleLevelAccessor accessor, Container parentContainer, Object constraints)
          Create the constraints for a border layout, if the parameter is a String.
 

Constructors in chrriis.uihierarchy.constraints with parameters of type SingleLevelAccessor
IllegalConstraintsException(SingleLevelAccessor accessor, Container parentContainer, Object constraints, Throwable target)
          Construct an IllegalConstraintsException.