java.lang.ObjectA single input source for a CSS source.org.w3c.css.sac.InputSource
This class allows a CSS application to encapsulate information about an input source in a single object, which may include a URI, a byte stream (possibly with a specified encoding), and/or a character stream.
The CSS parser will use the InputSource object to determine how to read CSS input. If there is a character stream available, the parser will read that stream directly; if not, the parser will use a byte stream, if available; if neither a character stream nor a byte stream is available, the parser will attempt to open a URI connection to the resource identified by the URI.
An InputSource object belongs to the application: the CSS parser shall never modify it in any way (it may modify a copy if necessary).
$
- Revision: 477010 $Philippe
- Le HegaretConstructor: |
---|
|
The URI must be full resolved.
|
Application writers may use setURI() to provide a base for resolving relative URIs, and setPublicId to include a public identifier. The character stream shall not include a byte order mark. |
Method from org.w3c.css.sac.InputSource Summary: |
---|
getByteStream, getCharacterStream, getEncoding, getMedia, getTitle, getURI, setByteStream, setCharacterStream, setEncoding, setMedia, setTitle, setURI |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.w3c.css.sac.InputSource Detail: |
---|
The getEncoding method will return the character encoding for this byte stream, or null if unknown. |
|
|
null
if media are currently unknown. |
|
The getEncoding method will return the character encoding of the object pointed to, or null if unknown. The URI will be fully resolved. |
The SAX parser will ignore this if there is also a character stream specified, but it will use a byte stream in preference to opening a URI connection itself. If the application knows the character encoding of the byte stream, it should set it with the setEncoding method. |
If there is a character stream specified, the SAX parser will ignore any byte stream and will not attempt to open a URI connection to the URI. |
The encoding must be a string acceptable for an CHARSET encoding declaration (see section 4.4 of the CSS recommendation Level 2). This method has no effect when the application provides a character stream. |
|
|
The URI is optional if there is a byte stream or a character stream, but it is still useful to provide one, since the application can use it to resolve relative URIs and can include it in error messages and warnings (the parser will attempt to open a connection to the URI only if there is no byte stream or character stream specified). If the application knows the character encoding of the object pointed to by the URI, it can register the encoding using the setEncoding method. The URI must be fully resolved. |