Uses of Class
com.jaxfront.core.schema.ValidationException

Packages that use ValidationException
com.jaxfront.core.dom   
com.jaxfront.core.error   
com.jaxfront.core.schema   
com.jaxfront.core.schema.impl   
com.jaxfront.core.type   
com.jaxfront.core.util.io.cvsexport   
com.jaxfront.core.xpath   
 

Uses of ValidationException in com.jaxfront.core.dom
 

Methods in com.jaxfront.core.dom that throw ValidationException
 void Document.saveAs(java.io.File file)
          Saves the current document into a file.
 void Document.saveAsZip(java.io.File file)
           
 java.lang.StringBuffer Document.serialize()
          Serializes the current document into a StringBuffer and returns it.
 java.lang.StringBuffer Document.serialize(boolean makeIndents)
           
 java.lang.StringBuffer Document.serialize(boolean makeIndents, boolean serializeHeader)
          Serializes the current document into a StringBuffer and returns it.
 byte[] Document.serializeToByteArray()
           
 byte[] Document.serializeToByteArray(java.lang.String encoding)
           
 org.w3c.dom.Document Document.serializeToW3CDocument()
          Serialize the current JAXFront document and creates a new W3C document instance.
 

Uses of ValidationException in com.jaxfront.core.error
 

Methods in com.jaxfront.core.error that return ValidationException
 ValidationException ValidationError.getException()
          Returns the condition that led to this Validation Error.
 

Constructors in com.jaxfront.core.error with parameters of type ValidationException
ValidationError(ValidationException ex, Type source)
           
 

Uses of ValidationException in com.jaxfront.core.schema
 

Methods in com.jaxfront.core.schema that return ValidationException
static ValidationException ValidationException.createCardinalityException(ListType type)
          Factory method to create a cardinality violation exception.
static ValidationException ValidationException.createDuplicateIDException(SimpleType type, java.lang.String invalidValue)
          Factory method to create a duplicate ID exception.
static ValidationException ValidationException.createDuplicateKeyException(SimpleType type, java.lang.String invalidValue)
          Factory method to create a duplicate key exception.
static ValidationException ValidationException.createInvalidCodeSetCodeException(SimpleType type, java.lang.String invalidValue)
          Factory method to create an invalid codeset value exception.
static ValidationException ValidationException.createMandatoryException(Type type)
          Factory method to create a mandatory violation exception.
static ValidationException ValidationException.createMissingKeyException(SimpleType type, java.lang.String invalidValue)
          Factory method to create a duplicate key exception.
 

Methods in com.jaxfront.core.schema that throw ValidationException
 void SchemaSimpleType.validate(Type source, java.lang.String value)
          Validates a string against the defined facets in the XML Schema.
 

Uses of ValidationException in com.jaxfront.core.schema.impl
 

Methods in com.jaxfront.core.schema.impl that throw ValidationException
 void SchemaSimpleTypeImpl.validate(Type source, java.lang.String value)
          Validates a string against the defined facets in the XML Schema.
 

Uses of ValidationException in com.jaxfront.core.type
 

Methods in com.jaxfront.core.type with parameters of type ValidationException
 void ErrorController.handleValidationException(Type type, ValidationException exception)
           
 

Methods in com.jaxfront.core.type that throw ValidationException
 void ListType.checkCardinality(int changes)
          Checks if removing or adding a new list entry violates the cardinality.
 void AbstractListType.checkCardinality(int changes)
          Checks if removing or adding a new list entry violates the cardinality.
 void SimpleType.checkDuplicateID(java.lang.String newValue)
           
 void SimpleType.checkDuplicateKey(java.lang.String newValue)
           
 java.util.List SimpleType.checkForDuplicateID()
           
 void SimpleType.checkKeyExist()
           
 void SimpleType.checkKeyExist(java.lang.String keyValue)
           
 void VirtualType.validate()
          Validates this type.
 

Uses of ValidationException in com.jaxfront.core.util.io.cvsexport
 

Methods in com.jaxfront.core.util.io.cvsexport that throw ValidationException
static void CSVDocumentExporter.main(java.lang.String[] args)
           
 

Uses of ValidationException in com.jaxfront.core.xpath
 

Methods in com.jaxfront.core.xpath that throw ValidationException
 void XPathDummyChoiceTypeWrapper.checkCardinality(int changes)