Package org.codehaus.modello.metadata
Interface MetadataPlugin
-
- All Known Implementing Classes:
AbstractMetadataPlugin,JavaMetadataPlugin,ModelMetadataPlugin,XdocMetadataPlugin,XmlMetadataPlugin,XsdMetadataPlugin
public interface MetadataPlugin- Author:
- Trygve Laugstøl
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssociationMetadatagetAssociationMetadata(ModelAssociation association, Map<String,String> data)ClassMetadatagetClassMetadata(ModelClass clazz, Map<String,String> data)FieldMetadatagetFieldMetadata(ModelField field, Map<String,String> data)InterfaceMetadatagetInterfaceMetadata(ModelInterface iface, Map<String,String> data)ModelMetadatagetModelMetadata(Model model, Map<String,String> data)
-
-
-
Field Detail
-
ROLE
static final String ROLE
-
-
Method Detail
-
getModelMetadata
ModelMetadata getModelMetadata(Model model, Map<String,String> data) throws ModelloException
- Throws:
ModelloException
-
getClassMetadata
ClassMetadata getClassMetadata(ModelClass clazz, Map<String,String> data) throws ModelloException
- Throws:
ModelloException
-
getInterfaceMetadata
InterfaceMetadata getInterfaceMetadata(ModelInterface iface, Map<String,String> data) throws ModelloException
- Throws:
ModelloException
-
getFieldMetadata
FieldMetadata getFieldMetadata(ModelField field, Map<String,String> data) throws ModelloException
- Throws:
ModelloException
-
getAssociationMetadata
AssociationMetadata getAssociationMetadata(ModelAssociation association, Map<String,String> data) throws ModelloException
- Throws:
ModelloException
-
-