Package org.tentackle.wurblet
Interface CodeGenerator<T>
-
- Type Parameters:
T- the type of object to generate code for
- 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 CodeGenerator<T>
Code generator for nested structures.- Author:
- harald
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringgenerate(T t)Generates code.
-