From: <ls...@us...> - 2007-06-25 11:20:38
|
Revision: 3311 http://jnode.svn.sourceforge.net/jnode/?rev=3311&view=rev Author: lsantha Date: 2007-06-25 04:20:36 -0700 (Mon, 25 Jun 2007) Log Message: ----------- Openjdk integration. Modified Paths: -------------- trunk/core/src/classpath/gnu/gnu/xml/stream/AttributeImpl.java trunk/core/src/classpath/gnu/gnu/xml/stream/NamespaceImpl.java Removed Paths: ------------- trunk/core/src/classpath/gnu/gnu/CORBA/ trunk/core/src/classpath/gnu/gnu/javax/naming/ trunk/core/src/classpath/gnu/gnu/javax/rmi/ Modified: trunk/core/src/classpath/gnu/gnu/xml/stream/AttributeImpl.java =================================================================== --- trunk/core/src/classpath/gnu/gnu/xml/stream/AttributeImpl.java 2007-06-25 10:56:45 UTC (rev 3310) +++ trunk/core/src/classpath/gnu/gnu/xml/stream/AttributeImpl.java 2007-06-25 11:20:36 UTC (rev 3311) @@ -85,9 +85,10 @@ return value; } - public QName getDTDType() + //jnode openjdk + public String getDTDType() { - return type; + return type.toString(); } public boolean isSpecified() Modified: trunk/core/src/classpath/gnu/gnu/xml/stream/NamespaceImpl.java =================================================================== --- trunk/core/src/classpath/gnu/gnu/xml/stream/NamespaceImpl.java 2007-06-25 10:56:45 UTC (rev 3310) +++ trunk/core/src/classpath/gnu/gnu/xml/stream/NamespaceImpl.java 2007-06-25 11:20:36 UTC (rev 3311) @@ -42,6 +42,7 @@ import javax.xml.stream.Location; import javax.xml.stream.XMLStreamException; import javax.xml.stream.events.Namespace; +import javax.xml.namespace.QName; /** * A namespace declaration event. @@ -106,6 +107,22 @@ throw e2; } } - + + //jnode openjdk + public QName getName() { + return null; //To change body of implemented methods use File | Settings | File Templates. + } + + public String getValue() { + return null; //To change body of implemented methods use File | Settings | File Templates. + } + + public String getDTDType() { + return null; //To change body of implemented methods use File | Settings | File Templates. + } + + public boolean isSpecified() { + return false; //To change body of implemented methods use File | Settings | File Templates. + } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |