Package it.tidalwave.role
Interface Composite<T,F extends Finder<? extends T>>
-
- All Known Subinterfaces:
SimpleComposite<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Composite<T,F extends Finder<? extends T>>
The role of a composite object, that is an object which contains children. They are exposed by means of aFinder
.- Author:
- Fabrizio Giudici
- Status: stable API
- Stereotype:
- Role
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
Composite.Visitor<T,R>
-
Field Summary
Fields Modifier and Type Field Description static java.lang.Class<Composite>
_Composite_
static Composite<java.lang.Object,Finder<java.lang.Object>>
DEFAULT
A defaultComposite
with no children.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description F
findChildren()
Returns the children of this object.
-
-
-
Method Detail
-
findChildren
@Nonnull F findChildren()
Returns the children of this object.- Returns:
- the children
-
-