Uses of Class
org.codehaus.modello.model.ModelField

Packages that use ModelField
org.codehaus.modello.core.io   
org.codehaus.modello.metadata   
org.codehaus.modello.model   
org.codehaus.modello.plugin   
org.codehaus.modello.plugin.java   
org.codehaus.modello.plugin.java.metadata   
org.codehaus.modello.plugin.model   
org.codehaus.modello.plugin.stax   
org.codehaus.modello.plugin.xdoc.metadata   
org.codehaus.modello.plugin.xsd.metadata   
org.codehaus.modello.plugins.xml   
org.codehaus.modello.plugins.xml.metadata   
 

Uses of ModelField in org.codehaus.modello.core.io
 

Methods in org.codehaus.modello.core.io with parameters of type ModelField
 java.util.Map<java.lang.String,java.lang.String> ModelReader.getAttributesForField(ModelField modelField)
           
 

Uses of ModelField in org.codehaus.modello.metadata
 

Methods in org.codehaus.modello.metadata with parameters of type ModelField
 FieldMetadata MetadataPlugin.getFieldMetadata(ModelField field, java.util.Map<java.lang.String,java.lang.String> data)
           
 

Uses of ModelField in org.codehaus.modello.model
 

Subclasses of ModelField in org.codehaus.modello.model
 class ModelAssociation
           
 

Methods in org.codehaus.modello.model that return ModelField
 ModelField ModelType.getField(java.lang.String type, Version version)
           
 ModelField ModelClass.getField(java.lang.String type, VersionRange versionRange)
           
abstract  ModelField ModelType.getField(java.lang.String type, VersionRange versionRange)
           
 ModelField ModelInterface.getField(java.lang.String type, VersionRange versionRange)
           
 

Methods in org.codehaus.modello.model that return types with arguments of type ModelField
 java.util.List<ModelField> ModelClass.getAllFields()
          Returns the list of all fields in this class.
abstract  java.util.List<ModelField> ModelType.getAllFields()
          Returns the list of all fields in this class.
 java.util.List<ModelField> ModelInterface.getAllFields()
          Returns the list of all fields in this class.
 java.util.List<ModelField> ModelClass.getAllFields(boolean withInheritedField)
          Returns all the fields in this class and all super classes if withInheritedField equals to true.
abstract  java.util.List<ModelField> ModelType.getAllFields(boolean withInheritedField)
          Returns all the fields in this class and all super classes if withInheritedField equals to true.
 java.util.List<ModelField> ModelInterface.getAllFields(boolean withInheritedField)
          Returns all the fields in this class and all super classes if withInheritedField equals to true.
 java.util.List<ModelField> ModelType.getAllFields(Version version, boolean withInheritedField)
           
 java.util.List<ModelField> ModelType.getFields(Version version)
          Returns the list of all fields in this class for a specific version.
 java.util.List<ModelField> ModelType.getIdentifierFields(Version version)
           
 

Methods in org.codehaus.modello.model with parameters of type ModelField
 void ModelClass.addField(ModelField modelField)
           
 

Uses of ModelField in org.codehaus.modello.plugin
 

Methods in org.codehaus.modello.plugin that return types with arguments of type ModelField
protected  java.util.List<ModelField> AbstractModelloGenerator.getFieldsForClass(ModelClass modelClass)
          Return the child fields of this class.
 

Methods in org.codehaus.modello.plugin with parameters of type ModelField
protected  boolean AbstractModelloGenerator.isInnerAssociation(ModelField field)
           
 

Uses of ModelField in org.codehaus.modello.plugin.java
 

Methods in org.codehaus.modello.plugin.java with parameters of type ModelField
protected  java.lang.String AbstractJavaModelloGenerator.getJavaDefaultValue(ModelField modelField)
           
protected  java.lang.String AbstractJavaModelloGenerator.getValueChecker(java.lang.String type, java.lang.String value, ModelField field)
           
 

Uses of ModelField in org.codehaus.modello.plugin.java.metadata
 

Methods in org.codehaus.modello.plugin.java.metadata with parameters of type ModelField
 FieldMetadata JavaMetadataPlugin.getFieldMetadata(ModelField field, java.util.Map<java.lang.String,java.lang.String> data)
           
 

Uses of ModelField in org.codehaus.modello.plugin.model
 

Methods in org.codehaus.modello.plugin.model with parameters of type ModelField
 FieldMetadata ModelMetadataPlugin.getFieldMetadata(ModelField field, java.util.Map<java.lang.String,java.lang.String> data)
           
 

Uses of ModelField in org.codehaus.modello.plugin.stax
 

Subclasses of ModelField in org.codehaus.modello.plugin.stax
 class DummyIdModelField
           
 

Methods in org.codehaus.modello.plugin.stax that return ModelField
protected  ModelField AbstractStaxGenerator.getReferenceIdentifierField(ModelAssociation association)
           
 

Uses of ModelField in org.codehaus.modello.plugin.xdoc.metadata
 

Methods in org.codehaus.modello.plugin.xdoc.metadata with parameters of type ModelField
 FieldMetadata XdocMetadataPlugin.getFieldMetadata(ModelField field, java.util.Map<java.lang.String,java.lang.String> data)
           
 

Uses of ModelField in org.codehaus.modello.plugin.xsd.metadata
 

Methods in org.codehaus.modello.plugin.xsd.metadata with parameters of type ModelField
 FieldMetadata XsdMetadataPlugin.getFieldMetadata(ModelField field, java.util.Map<java.lang.String,java.lang.String> data)
           
 

Uses of ModelField in org.codehaus.modello.plugins.xml
 

Methods in org.codehaus.modello.plugins.xml that return ModelField
protected  ModelField AbstractXmlGenerator.getContentField(java.util.List<ModelField> modelFields)
          Get the field which type is Content if any.
protected  ModelField AbstractXmlJavaGenerator.getContentField(java.util.List<ModelField> modelFields)
          Get the field which type is Content if any.
 

Methods in org.codehaus.modello.plugins.xml that return types with arguments of type ModelField
protected  java.util.List<ModelField> AbstractXmlGenerator.getFieldsForXml(ModelClass modelClass, Version version)
          Return the XML fields of this class, with proper XML order and no XML transient fields.
protected  java.util.List<ModelField> AbstractXmlJavaGenerator.getFieldsForXml(ModelClass modelClass, Version version)
          Return the XML fields of this class, with proper XML order and no XML transient fields.
protected  java.util.List<ModelField> AbstractXmlGenerator.getXmlAttributeFields(java.util.List<ModelField> modelFields)
          Gets all fields that are not marked as XML attribute.
 

Methods in org.codehaus.modello.plugins.xml with parameters of type ModelField
protected  java.lang.String AbstractXmlGenerator.resolveTagName(ModelField modelField, XmlFieldMetadata xmlFieldMetadata)
          Resolve XML tag name for a field.
protected  java.lang.String AbstractXmlJavaGenerator.resolveTagName(ModelField modelField, XmlFieldMetadata xmlFieldMetadata)
          Resolve XML tag name for a field.
 

Method parameters in org.codehaus.modello.plugins.xml with type arguments of type ModelField
protected  ModelField AbstractXmlGenerator.getContentField(java.util.List<ModelField> modelFields)
          Get the field which type is Content if any.
protected  ModelField AbstractXmlJavaGenerator.getContentField(java.util.List<ModelField> modelFields)
          Get the field which type is Content if any.
protected  java.util.List<ModelField> AbstractXmlGenerator.getXmlAttributeFields(java.util.List<ModelField> modelFields)
          Gets all fields that are not marked as XML attribute.
protected  boolean AbstractXmlGenerator.hasContentField(java.util.List<ModelField> modelFields)
           
 

Uses of ModelField in org.codehaus.modello.plugins.xml.metadata
 

Methods in org.codehaus.modello.plugins.xml.metadata with parameters of type ModelField
 FieldMetadata XmlMetadataPlugin.getFieldMetadata(ModelField field, java.util.Map<java.lang.String,java.lang.String> data)
           
 



Copyright © 2001-2011 Codehaus. All Rights Reserved.