Public Methods | |
| characterdatagetdata (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
currently stored in the node.
Retrieve the character data from the second child
of the first employee and invoke the "getData()"
method. The method returns the character data
string.
Definition at line 51 of file characterdatagetdata.java.
|
|
Definition at line 53 of file characterdatagetdata.java.
00054 {
00055 super(factory);
00056
00057 }
|
|
|
Reimplemented from DOMTest. Definition at line 73 of file characterdatagetdata.java.
00073 {
00074 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/characterdatagetdata";
00075 }
|
|
|
Definition at line 76 of file characterdatagetdata.java. References DOMTestCase::doMain().
00076 {
00077 DOMTestCase.doMain(characterdatagetdata.class,args);
00078 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 59 of file characterdatagetdata.java. References DOMTestCase::assertEquals(), and DOMTest::load().
00059 {
00060 Document doc;
00061 NodeList elementList;
00062 Node nameNode;
00063 CharacterData child;
00064 String childData;
00065 doc = load("staff");
00066 elementList = doc.getElementsByTagName("name");
00067 nameNode = elementList.item(0);
00068 child = (CharacterData)nameNode.getFirstChild();
00069 childData = child.getData();
00070 assertEquals("characterdataGetDataAssert","Margaret Martin",childData);
00071
00072 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001