Class Orderer<T>
- java.lang.Object
-
- org.apache.tapestry5.ioc.internal.util.Orderer<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(String id, T target, String... constraints)
Adds an object to be ordered.void
add(Orderable<T> orderable)
Adds an object to be ordered.List<T>
getOrdered()
void
override(String id, T target, String... constraints)
void
override(Orderable<T> orderable)
-
-
-
Method Detail
-
add
public void add(String id, T target, String... constraints)
Adds an object to be ordered.- Parameters:
id
- unique, qualified id for the targettarget
- the object to be ordered (or null as a placeholder)constraints
- optional, variable constraints- See Also:
add(Orderable)
-
getOrdered
public List<T> getOrdered()
-
-