Fields Summary |
---|
static final long | serialVersionUIDSerialization version. |
protected XSElementDeclaration | fDeclarationelement declaration |
protected XSTypeDefinition | fTypeDecltype of element, could be xsi:type |
protected boolean | fNiltrue if clause 3.2 of Element Locally Valid (Element) (3.3.4)
is satisfied, otherwise false |
protected boolean | fSpecifiedfalse if the element value was provided by the schema; true otherwise. |
protected String | fNormalizedValueschema normalized value property |
protected Object | fActualValueschema actual value |
protected short | fActualValueTypeschema actual value type |
protected ShortList | fItemValueTypesactual value types if the value is a list |
protected XSNotationDeclaration | fNotationhttp://www.w3.org/TR/xmlschema-1/#e-notation |
protected XSSimpleTypeDefinition | fMemberTypemember type definition against which element was validated |
protected short | fValidationAttemptedvalidation attempted: none, partial, full |
protected short | fValidityvalidity: valid, invalid, unknown |
protected StringList | fErrorCodeserror codes |
protected String | fValidationContextvalidation context: could be QName or XPath expression |
protected XSModel | fSchemaInformationthe schema information property |
Methods Summary |
---|
public java.lang.Object | getActualNormalizedValue()
return this.fActualValue;
|
public short | getActualNormalizedValueType()
return this.fActualValueType;
|
public XSElementDeclaration | getElementDeclaration()An item isomorphic to the element declaration used to validate
this element.
return fDeclaration;
|
public StringList | getErrorCodes()A list of error codes generated from validation attempts.
Need to find all the possible subclause reports that need reporting
return fErrorCodes;
|
public boolean | getIsSchemaSpecified()[schema specified]
return fSpecified;
|
public ShortList | getItemValueTypes()
return this.fItemValueTypes;
|
public XSSimpleTypeDefinition | getMemberTypeDefinition()If and only if that type definition is a simple type definition
with {variety} union, or a complex type definition whose {content type}
is a simple thype definition with {variety} union, then an item isomorphic
to that member of the union's {member type definitions} which actually
validated the element item's normalized value.
return fMemberType;
|
public boolean | getNil()[nil]
return fNotation;
|
public java.lang.String | getSchemaDefault()[schema default]
return fSchemaInformation;
|
public java.lang.String | getSchemaNormalizedValue()[schema normalized value] |