Interface JamClassPopulator
-
- All Known Implementing Classes:
JavadocClassBuilder
,ParserClassBuilder
,ReflectClassBuilder
public interface JamClassPopulator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
populate(MClass c)
Called by JAM to 'fill out' an instance of a given MClass with things like methods and fields.
-
-
-
Method Detail
-
populate
void populate(MClass c)
Called by JAM to 'fill out' an instance of a given MClass with things like methods and fields. The implementing builder is responsible for inspecting the source artifact (typically a source or class file) to call the appropriate createX methods on the given MClass.
- Parameters:
c
-
-
-