Package tilda.generation.interfaces
Interface CodeGenTildaJson
-
- All Superinterfaces:
CodeGenBase
public interface CodeGenTildaJson extends CodeGenBase
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
genFileStart(java.io.PrintWriter Out, Object O)
void
genJsonSerializableField(java.io.PrintWriter Out, GeneratorSession G, java.util.List<Column> JsonColumns)
void
genMethodToString(java.io.PrintWriter Out, GeneratorSession G, Object O)
void
genMethodWrite(java.io.PrintWriter Out, GeneratorSession G, Object O, java.util.List<Column> CreateColumns, java.util.List<Column> JsonColumns)
-
Methods inherited from interface tilda.generation.interfaces.CodeGenBase
genClassEnd, genClassStart, getFileName
-
-
-
-
Method Detail
-
genFileStart
void genFileStart(java.io.PrintWriter Out, Object O) throws java.lang.Exception
- Parameters:
Out
-- Throws:
java.lang.Exception
-
genJsonSerializableField
void genJsonSerializableField(java.io.PrintWriter Out, GeneratorSession G, java.util.List<Column> JsonColumns) throws java.lang.Exception
- Parameters:
Out
-G
-O
-- Throws:
java.lang.Exception
-
genMethodWrite
void genMethodWrite(java.io.PrintWriter Out, GeneratorSession G, Object O, java.util.List<Column> CreateColumns, java.util.List<Column> JsonColumns) throws java.lang.Exception
- Parameters:
Out
-G
-O
-- Throws:
java.lang.Exception
-
genMethodToString
void genMethodToString(java.io.PrintWriter Out, GeneratorSession G, Object O) throws java.lang.Exception
- Parameters:
Out
-G
-O
-- Throws:
java.lang.Exception
-
-