Imported GNU Classpath 0.90
Imported GNU Classpath 0.90 * scripts/makemake.tcl: Set gnu/java/awt/peer/swing to ignore. * gnu/classpath/jdwp/VMFrame.java (SIZE): New constant. * java/lang/VMCompiler.java: Use gnu.java.security.hash.MD5. * java/lang/Math.java: New override file. * java/lang/Character.java: Merged from Classpath. (start, end): Now 'int's. (canonicalName): New field. (CANONICAL_NAME, NO_SPACES_NAME, CONSTANT_NAME): New constants. (UnicodeBlock): Added argument. (of): New overload. (forName): New method. Updated unicode blocks. (sets): Updated. * sources.am: Regenerated. * Makefile.in: Likewise. From-SVN: r111942
This commit is contained in:
parent
27079765d0
commit
8aa540d2f7
1367 changed files with 188789 additions and 22762 deletions
|
@ -309,6 +309,7 @@ public abstract class DocumentBuilderFactory
|
|||
/**
|
||||
* Returns the schema.
|
||||
* @see #setSchema
|
||||
* @since 1.5
|
||||
*/
|
||||
public Schema getSchema()
|
||||
{
|
||||
|
@ -318,6 +319,7 @@ public abstract class DocumentBuilderFactory
|
|||
/**
|
||||
* Sets the schema.
|
||||
* @see #getSchema
|
||||
* @since 1.5
|
||||
*/
|
||||
public void setSchema(Schema schema)
|
||||
{
|
||||
|
@ -327,7 +329,7 @@ public abstract class DocumentBuilderFactory
|
|||
/**
|
||||
* Indicates whether parsers obtained from this factory will be XInclude
|
||||
* aware.
|
||||
* @since 1.3
|
||||
* @since 1.5
|
||||
*/
|
||||
public boolean isXIncludeAware()
|
||||
{
|
||||
|
@ -336,11 +338,32 @@ public abstract class DocumentBuilderFactory
|
|||
|
||||
/**
|
||||
* Sets whether parsers obtained from this factory will be XInclude aware.
|
||||
* @since 1.3
|
||||
* @since 1.5
|
||||
*/
|
||||
public void setXIncludeAware(boolean state)
|
||||
{
|
||||
xIncludeAware = state;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the specified feature.
|
||||
* @param name the feature name (URI)
|
||||
* @param value whether to enable the feature or not
|
||||
* @exception ParserConfigurationException if the feature is not
|
||||
* supported.
|
||||
* @since 1.5
|
||||
*/
|
||||
public abstract void setFeature(String name, boolean value)
|
||||
throws ParserConfigurationException;
|
||||
|
||||
/**
|
||||
* Returns the value of the specified feature.
|
||||
* @param name the feature name (URI)
|
||||
* @exception ParserConfigurationException if the feature is not
|
||||
* supported.
|
||||
* @since 1.5
|
||||
*/
|
||||
public abstract boolean getFeature(String name)
|
||||
throws ParserConfigurationException;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue