Merge "Fix the broken compile of a currently-not-being-compiled AWT class."

This commit is contained in:
Jesse Wilson
2010-01-28 14:00:48 -08:00
committed by Android (Google) Code Review

View File

@@ -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.
*