API Overview API Index Package Overview Direct link to this page
JDK 1.6
  org.w3c.dom.ls. LSInput View Source
Author(s)
Since
Version
Serial
Hierarchy
 LSInput
Subinterfaces
Description
public interface LSInput
  This interface represents an input source for data.
See also:   
Methods
Hide/Show inherited methods
public String getBaseURI ()
  The base URI to be used (see section 5.1.4 in [IETF RFC 2396]) for resolving a relative systemId to an absolute URI.
public InputStream getByteStream ()
  An attribute of a language and binding dependent type that represents a stream of bytes.
public boolean getCertifiedText ()
If set to true, assume that the input is certified (see section 2.13 in [XML 1.1]) when parsing [XML 1.1].
public Reader getCharacterStream ()
  An attribute of a language and binding dependent type that represents a stream of 16-bit units.
public String getEncoding ()
  The character encoding, if known.
public String getPublicId ()
  The public identifier for this input source.
public String getStringData ()
  String data to parse.
public String getSystemId ()
  The system identifier, a URI reference [IETF RFC 2396], for this input source.
public void setBaseURI (String baseURI)
  The base URI to be used (see section 5.1.4 in [IETF RFC 2396]) for resolving a relative systemId to an absolute URI.
public void setByteStream (InputStream byteStream)
  An attribute of a language and binding dependent type that represents a stream of bytes.
public void setCertifiedText (boolean certifiedText)
If set to true, assume that the input is certified (see section 2.13 in [XML 1.1]) when parsing [XML 1.1].
public void setCharacterStream (Reader characterStream)
  An attribute of a language and binding dependent type that represents a stream of 16-bit units.
public void setEncoding (String encoding)
  The character encoding, if known.
public void setPublicId (String publicId)
  The public identifier for this input source.
public void setStringData (String stringData)
  String data to parse.
public void setSystemId (String systemId)
  The system identifier, a URI reference [IETF RFC 2396], for this input source.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar