Package org.stringtemplate.v4.misc
Class AggregateModelAdaptor
- java.lang.Object
-
- org.stringtemplate.v4.misc.AggregateModelAdaptor
-
- All Implemented Interfaces:
ModelAdaptor<Aggregate>
public class AggregateModelAdaptor extends Object implements ModelAdaptor<Aggregate>
Deal with structs created viaST.addAggr(java.lang.String, java.lang.Object...)("structname.{prop1, prop2}", ...);.
-
-
Constructor Summary
Constructors Constructor Description AggregateModelAdaptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetProperty(Interpreter interp, ST self, Aggregate o, Object property, String propertyName)Lookup property name inoand return its value.
-
-
-
Method Detail
-
getProperty
public Object getProperty(Interpreter interp, ST self, Aggregate o, Object property, String propertyName) throws STNoSuchPropertyException
Description copied from interface:ModelAdaptorLookup property name inoand return its value.propertyis normally aStringbut doesn't have to be. E.g., ifoisMap,propertycould be any key type. If we need to convert toString, then it's done bySTand passed in here.- Specified by:
getPropertyin interfaceModelAdaptor<Aggregate>- Throws:
STNoSuchPropertyException
-
-