Package org.apache.tapestry5.ioc
Class OrderConstraintBuilder
- java.lang.Object
-
- org.apache.tapestry5.ioc.OrderConstraintBuilder
-
public final class OrderConstraintBuilder extends java.lang.Object
Constructs order constraints forOrderedConfiguration
.- Since:
- 5.2.0.0
-
-
Constructor Summary
Constructors Constructor Description OrderConstraintBuilder()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrderConstraint
after(java.lang.String id)
Adds an after:id constraint.static OrderConstraint
afterAll()
Adds an after:* constraint.static OrderConstraint
before(java.lang.String id)
Adds a before:id constraint.static OrderConstraint
beforeAll()
Adds a before:* constraint.
-
-
-
Constructor Detail
-
OrderConstraintBuilder
public OrderConstraintBuilder()
-
-
Method Detail
-
after
public static OrderConstraint after(java.lang.String id)
Adds an after:id constraint.
-
afterAll
public static OrderConstraint afterAll()
Adds an after:* constraint.
-
before
public static OrderConstraint before(java.lang.String id)
Adds a before:id constraint.
-
beforeAll
public static OrderConstraint beforeAll()
Adds a before:* constraint.
-
-