Public Methods | |
| nodecommentnodeattributes (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Retrieve the Comment Node(third child) of the DOM document and invoke the "getAttributes()" method on the Comment Node. It should return null.
Definition at line 45 of file nodecommentnodeattributes.java.
|
|
Definition at line 47 of file nodecommentnodeattributes.java.
00048 {
00049 super(factory);
00050
00051 }
|
|
|
Reimplemented from DOMTest. Definition at line 64 of file nodecommentnodeattributes.java.
00064 {
00065 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodecommentnodeattributes";
00066 }
|
|
|
Definition at line 67 of file nodecommentnodeattributes.java. References DOMTestCase::doMain().
00067 {
00068 DOMTestCase.doMain(nodecommentnodeattributes.class,args);
00069 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 53 of file nodecommentnodeattributes.java. References DOMTest::load().
00053 {
00054 Document doc;
00055 NodeList elementList;
00056 Node commentNode;
00057 NamedNodeMap attrList;
00058 doc = load("staff");
00059 elementList = doc.getChildNodes();
00060 commentNode = elementList.item(2);
00061 attrList = commentNode.getAttributes();
00062
00063 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001