diff options
author | Jesse Wilson <jessewilson@google.com> | 2010-01-28 12:30:19 -0800 |
---|---|---|
committer | Jesse Wilson <jessewilson@google.com> | 2010-01-28 12:31:01 -0800 |
commit | a89815e6a5b1824881f52f8026a62a5163d70b8a (patch) | |
tree | 0f0c357432dc0f73d364c3e84fd6860281aa6ad1 /awt/javax | |
parent | f9e573ec337e79043a5ee74fe3c03d97b31e11e6 (diff) | |
download | frameworks_base-a89815e6a5b1824881f52f8026a62a5163d70b8a.zip frameworks_base-a89815e6a5b1824881f52f8026a62a5163d70b8a.tar.gz frameworks_base-a89815e6a5b1824881f52f8026a62a5163d70b8a.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.
Diffstat (limited to 'awt/javax')
-rw-r--r-- | awt/javax/imageio/metadata/IIOMetadataNode.java | 10 |
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. * |