Uses of Class
edu.cmu.relativelayout.Binding

Packages that use Binding
edu.cmu.relativelayout   
 

Uses of Binding in edu.cmu.relativelayout
 

Methods in edu.cmu.relativelayout that return Binding
 Binding BindingFactory.above(Component fixed)
          Returns a Binding that will place a component above the given fixed component.
 Binding BindingFactory.below(Component fixed)
          Returns a Binding that will place a component below the given fixed component.
 Binding BindingFactory.bottomAlignedWith(Component fixed)
          Returns a Binding that will align a component's bottom edge to that of the given fixed component.
 Binding BindingFactory.bottomEdge()
          Returns a Binding that will place a component just above the bottom edge of its container.
 Binding BindingFactory.directBottomEdge()
          Returns a Binding that will place a component directly above the bottom edge of its container.
 Binding BindingFactory.directLeftEdge()
          Returns a Binding that will place a component directly to the right of the left edge of its container.
 Binding BindingFactory.directlyAbove(Component fixed)
          Returns a Binding that will place a component directly above the given fixed component.
 Binding BindingFactory.directlyBelow(Component fixed)
          Returns a Binding that will place a component directly below of the given fixed component.
 Binding BindingFactory.directlyLeftOf(Component fixed)
          Returns a Binding that will place a component directly to the left of the given fixed component.
 Binding BindingFactory.directlyRightOf(Component fixed)
          Returns a Binding that will place a component directly to the right of the given fixed component.
 Binding BindingFactory.directRightEdge()
          Returns a Binding that will place a component directly to the left of the right edge of its container.
 Binding BindingFactory.directTopEdge()
          Returns a Binding that will place a component directly below the top edge of its container.
 Binding BindingFactory.horizontallyCenterAlignedWith(Component fixed)
          Returns a Binding that will align a component's horizontal center to that of the given fixed component.
 Binding BindingFactory.leftAlignedWith(Component fixed)
          Returns a Binding that will align a component's left edge to that of the given fixed component.
 Binding BindingFactory.leftEdge()
          Returns a Binding that will place a component just to the right of the left edge of its container.
 Binding BindingFactory.leftOf(Component fixed)
          Returns a Binding that will place a component to the left of the given fixed component.
 Binding BindingFactory.rightAlignedWith(Component fixed)
          Returns a Binding that will align a component's right edge to that of the given fixed component.
 Binding BindingFactory.rightEdge()
          Returns a Binding that will place a component just to the left of the right edge of its container.
 Binding BindingFactory.rightOf(Component fixed)
          Returns a Binding that will place a component to the right of the given fixed component.
 Binding BindingFactory.topAlign(Component fixed)
          Returns a Binding that will align a component's top edge to that of the given fixed component.
 Binding BindingFactory.topEdge()
          Returns a Binding that will place a component just below the top edge of its container.
 Binding BindingFactory.verticallyCenterAlignedWith(Component fixed)
          Returns a Binding that will align a component's vertical center to that of the given fixed component.
 

Methods in edu.cmu.relativelayout with parameters of type Binding
 void RelativeConstraints.addBinding(Binding theBinding)
          Adds an Binding to this constraint.
 void RelativeConstraints.addBindings(Binding... theBindings)
          Adds all of the specified Bindings to this constraint.
 

Constructors in edu.cmu.relativelayout with parameters of type Binding
InconsistentConstraintException(Binding aBinding, Binding anotherBinding)
          Constructor for InconsistentConstraintException.
InvalidBindingException(Binding binding)
          Constructor for InvalidBindingException.
RelativeConstraints(Binding... theBindings)
          Constructor for RelativeConstraints.