From fbdd5771f231e685f7e25803f4c0c41b5e9e62e7 Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Thu, 28 Jan 2010 12:30:19 -0800 Subject: 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(+) (limited to 'awt/javax') diff --git a/awt/javax/imageio/metadata/IIOMetadataNode.java b/awt/javax/imageio/metadata/IIOMetadataNode.java index adc6d67..efbaae8 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. * -- cgit v1.1