Package gw.lang.reflect.json
Interface IJsonParentType
-
public interface IJsonParentType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChild(String name, IJsonParentType child)IJsonParentTypefindChild(String name)StringgetName()IJsonParentTypegetParent()voidrender(StringBuilder sb, int indent, boolean mutable)
-
-
-
Method Detail
-
addChild
void addChild(String name, IJsonParentType child)
-
findChild
IJsonParentType findChild(String name)
-
render
void render(StringBuilder sb, int indent, boolean mutable)
-
getName
String getName()
-
getParent
IJsonParentType getParent()
-
-