summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2010-01-28 12:30:19 -0800
committerJesse Wilson <jessewilson@google.com>2010-01-28 12:31:01 -0800
commitfbdd5771f231e685f7e25803f4c0c41b5e9e62e7 (patch)
tree6a4fc1d62ccb3edf7e3910cc5034fc9fdaa61f18
parent422cfc9c16d26db970787bd08c13501c038e5fed (diff)
downloadframeworks_native-fbdd5771f231e685f7e25803f4c0c41b5e9e62e7.zip
frameworks_native-fbdd5771f231e685f7e25803f4c0c41b5e9e62e7.tar.gz
frameworks_native-fbdd5771f231e685f7e25803f4c0c41b5e9e62e7.tar.bz2
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.
-rw-r--r--awt/javax/imageio/metadata/IIOMetadataNode.java10
1 files changed, 10 insertions, 0 deletions
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.
*