Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

tospeak.db.* (34)tospeak.db.impl.* (31)tospeak.db.impl.runtime.* (28)

Package Samples:

tospeak.db.impl
tospeak.db.impl.runtime
tospeak.db

Classes:

LanguageContent: Java content class for LanguageContent element declaration. The following schema fragment specifies the expected content contained within this java content object. <element name="LanguageContent"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="Language" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="LanguageID" type="{http://www.w3.org/2001/XMLSchema}integer"/> <element ...
LanguageContentType: Java content class for anonymous complex type. The following schema fragment specifies the expected content contained within this java content object. <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="Language" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="LanguageID" type="{http://www.w3.org/2001/XMLSchema}integer"/> <element name="LanguageName" type="{http://www.w3.org/2001/XMLSchema}string"/> ...
XMLSerializer: Receives XML serialization event This object coordinates the overall marshalling efforts across different content-tree objects and different target formats. The following CFG gives the proper sequence of method invocation. MARSHALLING := ELEMENT ELEMENT := "startElement" NSDECL* "endNamespaceDecls" ATTRIBUTE* "endAttributes" BODY "endElement" NSDECL := "declareNamespace" ATTRIBUTE := "startAttribute" ATTVALUES "endAttribute" ATTVALUES := "text"* BODY := ( "text" | ELEMENT )* A marshalling of one element consists of two stages. The first stage is for marshalling attributes and collecting namespace ...
ObjectFactory: This object contains factory methods for each Java content interface and Java element interface generated in the tospeak.db package. An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this class.
ValidationContext: Maintains information that needs to be stored across validations of multiple objects. Specifically, this object is responsible for: detecting a cycle in a content tree by keeping track of objects that were validated. keeping an instance of NamespaceContextImpl, which is shared by all MSVValidators. keeping a reference to ValidationErrorHandler . MSVValidators should use this error handler to report any error.
ValidatingUnmarshaller: Filter implementation of SAXUnmarshallerHandler. This component internally uses a VerifierFilter to validate SAX events that goes through this component. Discovered error information is just passed down to the next component. This will enable the implementation to validate all sources of SAX events in the RI - XMLReader, DOMScanner SAX events will go the VerifierFilter and then to the SAXUnmarshaller...
UnmarshallingContext: Methods exposed by the unmarshalling coordinator object to the generated code. This interface will be implemented by the coordinator, which converts whatever events (e.g., SAX) into unmarshalling events. Errors detected by the AbstractUnmarshallingEventHandlerImpl-derived classes should be either thrown as UnrepotedException or reported through the handleEvent method of this interface.
AbstractUnmarshallingEventHandlerImpl: Convenient default implementation of com.sun.xml.bind.unmarshaller.UnmarshallingEventHandler to minimize code generation. For historical reasons, sometimes this type is used where com.sun.xml.bind.unmarshaller.UnmarshallingEventHandler should be used. Once an exception is in the form of UnmarshalException, we consider it to be already reported to the client app.
NamespaceContext2: Maintains namespace<->prefix bindings. This interface extends javax.xml.namespace.NamespaceContext and provides an additional functionality, which is necessary to declare namespaced attributes on elements. The added method is for self-consumption by the marshaller. This object is composed into a Serializer.
UnmarshallingEventHandler: Implemented by the generated code to unmarshall an object from unmarshaller events. AbstractUnmarshallingEventHandlerImpl throws a SAXException when a problem is encountered and that problem is not reported. It is the responsibility of the caller of this interface to report it to the client's ValidationEventHandler and re-wrap it into UnmarshalException.
NamespaceContextImpl: Implementation of the NamespaceContext2. This class also provides several utility methods for XMLSerializer-derived classes. The startElement method and the endElement method need to be called appropriately when used. See javadoc for those methods for details.
ErrorHandlerAdaptor: Receives errors through org.xml.sax.ErrorHandler and reports to the SAXUnmarshallerHandler .
UnmarshallingEventHandlerAdaptor: Redirects events to another SAX ContentHandler. Note that the SAXException returned by the ContentHandler is unreported. So we have to catch them and report it, then rethrow it if necessary.
SAXMarshaller: XMLSerializer that produces SAX2 events. To marshal an object, create an instance of SAXMarshaller and call the serializeElements method of the XMLSerializable object that you want to marshal.

Home | Contact Us | Privacy Policy | Terms of Service