-
public interface DOMImplementationLS
DOMImplementationLS
contains the factory methods for creating Load and Save objects.The expectation is that an instance of the
DOMImplementationLS
interface can be obtained by using binding-specific casting methods on an instance of theDOMImplementation
interface or, if theDocument
supports the feature"Core"
version"3.0"
defined in [DOM Level 3 Core] , by using the methodDOMImplementation.getFeature
with parameter values"LS"
(or"LS-Async"
) and"3.0"
(respectively).See also the Document Object Model (DOM) Level 3 Load and Save Specification.
-
-
Field Summary
Fields Modifier and Type Field and Description static short
MODE_ASYNCHRONOUS
Create an asynchronousLSParser
.static short
MODE_SYNCHRONOUS
Create a synchronousLSParser
.
-
Method Summary
Methods Modifier and Type Method and Description LSInput
createLSInput()
Create a new empty input source object whereLSInput.characterStream
,LSInput.byteStream
,LSInput.stringData
LSInput.systemId
,LSInput.publicId
,LSInput.baseURI
, andLSInput.encoding
are null, andLSInput.certifiedText
is false.LSOutput
createLSOutput()
Create a new empty output destination object whereLSOutput.characterStream
,LSOutput.byteStream
,LSOutput.systemId
,LSOutput.encoding
are null.LSParser
createLSParser(short mode, String schemaType)
Create a newLSParser
.LSSerializer
createLSSerializer()
Create a newLSSerializer
object.
-
-
-
Field Detail
-
MODE_SYNCHRONOUS
static final short MODE_SYNCHRONOUS
Create a synchronousLSParser
.- See Also:
- Constant Field Values
-
MODE_ASYNCHRONOUS
static final short MODE_ASYNCHRONOUS
Create an asynchronousLSParser
.- See Also:
- Constant Field Values
-
-
Method Detail
-
createLSParser
LSParser createLSParser(short mode, String schemaType) throws DOMException
Create a newLSParser
. The newly constructed parser may then be configured by means of itsDOMConfiguration
object, and used to parse documents by means of itsparse
method.- Parameters:
mode
- Themode
argument is eitherMODE_SYNCHRONOUS
orMODE_ASYNCHRONOUS
, ifmode
isMODE_SYNCHRONOUS
then theLSParser
that is created will operate in synchronous mode, if it'sMODE_ASYNCHRONOUS
then theLSParser
that is created will operate in asynchronous mode.schemaType
- An absolute URI representing the type of the schema language used during the load of aDocument
using the newly createdLSParser
. Note that no lexical checking is done on the absolute URI. In order to create aLSParser
for any kind of schema types (i.e. the LSParser will be free to use any schema found), use the valuenull
.Note: For W3C XML Schema [XML Schema Part 1] , applications must use the value
"http://www.w3.org/2001/XMLSchema"
. For XML DTD [XML 1.0], applications must use the value"http://www.w3.org/TR/REC-xml"
. Other Schema languages are outside the scope of the W3C and therefore should recommend an absolute URI in order to use this method.- Returns:
- The newly created
LSParser
object. ThisLSParser
is either synchronous or asynchronous depending on the value of themode
argument.Note: By default, the newly created
LSParser
does not contain aDOMErrorHandler
, i.e. the value of the " error-handler" configuration parameter isnull
. However, implementations may provide a default error handler at creation time. In that case, the initial value of the"error-handler"
configuration parameter on the newLSParser
object contains a reference to the default error handler. - Throws:
DOMException
- NOT_SUPPORTED_ERR: Raised if the requested mode or schema type is not supported.
-
createLSSerializer
LSSerializer createLSSerializer()
Create a newLSSerializer
object.- Returns:
- The newly created
LSSerializer
object.Note: By default, the newly created
LSSerializer
has noDOMErrorHandler
, i.e. the value of the"error-handler"
configuration parameter isnull
. However, implementations may provide a default error handler at creation time. In that case, the initial value of the"error-handler"
configuration parameter on the newLSSerializer
object contains a reference to the default error handler.
-
createLSInput
LSInput createLSInput()
Create a new empty input source object whereLSInput.characterStream
,LSInput.byteStream
,LSInput.stringData
LSInput.systemId
,LSInput.publicId
,LSInput.baseURI
, andLSInput.encoding
are null, andLSInput.certifiedText
is false.- Returns:
- The newly created input object.
-
createLSOutput
LSOutput createLSOutput()
Create a new empty output destination object whereLSOutput.characterStream
,LSOutput.byteStream
,LSOutput.systemId
,LSOutput.encoding
are null.- Returns:
- The newly created output object.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-org/w3c/dom/ls/DOMImplementationLS.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.