From a89815e6a5b1824881f52f8026a62a5163d70b8a Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Thu, 28 Jan 2010 12:30:19 -0800 Subject: [PATCH] Fix the broken compile of a currently-not-being-compiled AWT class. I intend to remove AWT entirely, but doing so is a large project and this stopgap will remove several errors from Eclipse projects. --- awt/javax/imageio/metadata/IIOMetadataNode.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/awt/javax/imageio/metadata/IIOMetadataNode.java b/awt/javax/imageio/metadata/IIOMetadataNode.java index adc6d67b62b2d..efbaae87b0be6 100644 --- a/awt/javax/imageio/metadata/IIOMetadataNode.java +++ b/awt/javax/imageio/metadata/IIOMetadataNode.java @@ -27,6 +27,8 @@ import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; import org.w3c.dom.NodeList; +import org.w3c.dom.TypeInfo; +import org.w3c.dom.UserDataHandler; //???AWT //import org.w3c.dom.TypeInfo; @@ -924,6 +926,14 @@ public class IIOMetadataNode implements Element, NodeList { return userObject; } + public TypeInfo getSchemaTypeInfo() { + throw new UnsupportedOperationException(); + } + + public Object setUserData(String key, Object data, UserDataHandler handler) { + throw new UnsupportedOperationException(); + } + /** * Sets the user object associated with this node. *