Methods Summary |
---|
public java.lang.String | getFieldName()Obtain the field name.
return fieldName;
|
public java.lang.Class | getJavaType()
return javaType;
|
public javax.xml.namespace.QName | getXmlName()Obtain the XML QName for this field
return xmlName;
|
public javax.xml.namespace.QName | getXmlType()Returns the XML type (e.g. xsd:string) for this field
return xmlType;
|
public boolean | isElement()Check if this is an element or an attribute.
return _isElement;
|
public boolean | isIndexed()
return false;
|
public boolean | isMinOccursZero()Check if this field can be omitted.
return minOccursIs0;
|
public void | setFieldName(java.lang.String fieldName)Set the field name.
this.fieldName = fieldName;
|
public void | setJavaType(java.lang.Class javaType)
this.javaType = javaType;
|
public void | setMinOccursIs0(boolean minOccursIs0)
this.minOccursIs0 = minOccursIs0;
|
public void | setXmlName(javax.xml.namespace.QName xmlName)Set the XML QName for this field
this.xmlName = xmlName;
|
public void | setXmlType(javax.xml.namespace.QName xmlType)Returns the XML type (e.g. xsd:string) for this field
this.xmlType = xmlType;
|