Added getElementById method due to change in JavaDOM adhering to W3C specs.

git-svn-id: svn://10.0.0.236/trunk@60539 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
leila.garin%eng.sun.com
2000-02-12 00:08:52 +00:00
parent fe0210cefd
commit a9df051ed0

View File

@@ -89,4 +89,9 @@ public class DocumentImpl extends NodeImpl implements Document, DocumentEvent {
public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
throw new UnsupportedOperationException();
}
public Element getElementById(String elementId) {
throw new UnsupportedOperationException();
};
}