Public Methods | |
| nodenotationnodeattributes (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Node returns null.
Retrieve the Notation declaration inside the DocumentType
node and invoke the "getAttributes()" method on the
Notation Node. It should return null.
Definition at line 51 of file nodenotationnodeattributes.java.
|
|
Definition at line 53 of file nodenotationnodeattributes.java.
00054 {
00055 super(factory);
00056
00057 }
|
|
|
Reimplemented from DOMTest. Definition at line 73 of file nodenotationnodeattributes.java.
00073 {
00074 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodenotationnodeattributes";
00075 }
|
|
|
Definition at line 76 of file nodenotationnodeattributes.java. References DOMTestCase::doMain().
00076 {
00077 DOMTestCase.doMain(nodenotationnodeattributes.class,args);
00078 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 59 of file nodenotationnodeattributes.java. References DOMTestCase::assertNull(), and DOMTest::load().
00059 {
00060 Document doc;
00061 DocumentType docType;
00062 NamedNodeMap testName;
00063 Node notationNode;
00064 NamedNodeMap attrList;
00065 doc = load("staff");
00066 docType = doc.getDoctype();
00067 testName = docType.getNotations();
00068 notationNode = testName.getNamedItem("notation1");
00069 attrList = notationNode.getAttributes();
00070 assertNull("nodeNotationNodeAttributesAssert1",attrList);
00071
00072 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001