hanged made to these file

Added new api test entries in BWTestClass files
Added UNSUPPORTED methods in BWBaseTest/TestLoader
Update DoucmentImpl accroding to java DOM version.
Did correct check for retrun values in ElementImpl_removeAttribute_String_1.java
ElementImpl_setAttributeNode_Attr_1.java NamedNodeMapImpl_setNamedItem_Node_1.java


git-svn-id: svn://10.0.0.236/trunk@61141 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
leila.garin%eng.sun.com
2000-02-16 22:53:33 +00:00
parent f4e7200748
commit c27e519001
15 changed files with 378 additions and 174 deletions

View File

@@ -42,6 +42,10 @@ public class DocumentImpl extends NodeImpl implements Document, DocumentEvent {
// instantiated from JNI only
private DocumentImpl() {}
public DocumentImpl(long p) {
super(p);
}
public native Attr createAttribute(String name);
public native CDATASection createCDATASection(String data);
@@ -60,18 +64,10 @@ public class DocumentImpl extends NodeImpl implements Document, DocumentEvent {
public native DOMImplementation getImplementation();
/* The only change in this file - private -> public*/
public static native void initialize();
public Event createEvent(String type) throws DOMException {
throw new UnsupportedOperationException();
}
static {
System.loadLibrary("javadomjni");
initialize();
}
public Node importNode(Node importedNode, boolean deep) throws DOMException {
throw new UnsupportedOperationException();
}