Package org.xwiki.diff.display
Interface Splitter<E,F>
-
- Type Parameters:
E
- the type of object being splitF
- the type of objects created by the split
@Role public interface Splitter<E,F>
Splits a composite object in multiple parts of the same type.- Since:
- 4.1RC1
- Version:
- $Id: d00ffca056a0ec243a8c7ef01e882c56264afb41 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<F>
split(E composite)
Splits the given composite object in multiple parts of the same type.
-