XIncludeInputSourcepublic class XIncludeInputSource extends XMLInputSource
Fields Summary |
---|
Properties | props |
Constructors Summary |
---|
public XIncludeInputSource(String publicId, String systemId, String baseSystemId)Constructs an input source from just the public and system
identifiers, leaving resolution of the entity and opening of
the input stream up to the caller.
super(publicId,systemId,baseSystemId);
props = new Properties();
| public XIncludeInputSource(XMLResourceIdentifier resourceIdentifier)Constructs an input source from a XMLResourceIdentifier
object, leaving resolution of the entity and opening of
the input stream up to the caller.
super(resourceIdentifier);
props = new Properties();
| public XIncludeInputSource(String publicId, String systemId, String baseSystemId, InputStream byteStream, String encoding)Constructs an input source from a byte stream.
super(publicId,systemId,baseSystemId,byteStream,encoding);
props = new Properties();
| public XIncludeInputSource(String publicId, String systemId, String baseSystemId, Reader charStream, String encoding)Constructs an input source from a character stream.
super(publicId,systemId,baseSystemId,charStream,encoding);
props = new Properties();
| public XIncludeInputSource(StreamSource source)Constructs an input source from {@link StreamSource}.
super(source);
props = new Properties();
|
Methods Summary |
---|
public java.lang.Object | getProperty(java.lang.String propName)get Accept,Accept-Charset, Accept-Language HTTP request property
if(propName != null)
return props.get(propName);
return null;
| public void | setProperty(java.lang.String propName, java.lang.String propValue)store Accept,Accept-Charset, Accept-Language HTTP request property
if(propName!= null && propValue != null){
props.put(propName,propValue);
}
|
|