Package cz.vutbr.fit.layout.api
Interface Concatenator<T>
-
- All Known Subinterfaces:
AreaConcatenator,BoxConcatenator
- All Known Implementing Classes:
Concatenators.PlainAreaConcatenator,Concatenators.PlainBoxConcatenator,Concatenators.SeparatedAreaConcatenator,Concatenators.SeparatedBoxConcatenator
public interface Concatenator<T>A concatenator that can convert a list of elements to a text string.- Author:
- burgetr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringconcat(List<T> elems)Creates a text string by concatenating the contents of the given elements.
-