Main Page   Packages   Class Hierarchy   Compound List   File List   Compound Members  

characterdataindexsizeerrsubstringnegativeoffset Class Reference

Inherits DOMTestCase.

List of all members.

Public Methods

 characterdataindexsizeerrsubstringnegativeoffset (DOMTestDocumentBuilderFactory factory) throws DOMTestIncompatibleException
void runTest () throws java.lang.Throwable
String getTargetURI ()

Static Public Methods

void main (String[] args)


Detailed Description

The "substringData(offset,count)" method raises an INDEX_SIZE_ERR DOMException if the specified offset is negative.

Retrieve the character data of the last child of the first employee and invoke its "substringData(offset,count) method with offset=-5 and count=3. It should raise the desired exception since the offset is negative.

Author:
NIST , Mary Brady
See also:
http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INDEX_SIZE_ERR']) , http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6531BCCF , http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-6531BCCF')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='INDEX_SIZE_ERR'])

Definition at line 48 of file characterdataindexsizeerrsubstringnegativeoffset.java.


Constructor & Destructor Documentation

characterdataindexsizeerrsubstringnegativeoffset::characterdataindexsizeerrsubstringnegativeoffset DOMTestDocumentBuilderFactory    factory [inline]
 

Definition at line 50 of file characterdataindexsizeerrsubstringnegativeoffset.java.

References DOMTest::setFactory(), and DocumentBuilderSetting::signed.

00051                                      {
00052 
00053       DocumentBuilderSetting[] settings = new DocumentBuilderSetting[] {
00054 DocumentBuilderSetting.signed
00055         };
00056         DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
00057         setFactory(testFactory);
00058 
00059    }


Member Function Documentation

String characterdataindexsizeerrsubstringnegativeoffset::getTargetURI   [inline, virtual]
 

Reimplemented from DOMTest.

Definition at line 85 of file characterdataindexsizeerrsubstringnegativeoffset.java.

00085                                 {
00086       return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/characterdataindexsizeerrsubstringnegativeoffset";
00087    }

void characterdataindexsizeerrsubstringnegativeoffset::main String    args[] [inline, static]
 

Definition at line 88 of file characterdataindexsizeerrsubstringnegativeoffset.java.

References DOMTestCase::doMain().

00088                                           {
00089         DOMTestCase.doMain(characterdataindexsizeerrsubstringnegativeoffset.class,args);
00090    }

void characterdataindexsizeerrsubstringnegativeoffset::runTest   [inline, virtual]
 

Reimplemented from DOMTestCase.

Definition at line 61 of file characterdataindexsizeerrsubstringnegativeoffset.java.

References DOMTestCase::assertTrue(), and DOMTest::load().

00061                                                     {
00062       Document doc;
00063       NodeList elementList;
00064       Node nameNode;
00065       CharacterData child;
00066       String badString;
00067       doc = load("staff");
00068       elementList = doc.getElementsByTagName("address");
00069       nameNode = elementList.item(0);
00070       child = (CharacterData)nameNode.getFirstChild();
00071       
00072         {
00073                 boolean success = false;
00074                 try {
00075                         badString = child.substringData(-5,3);
00076       
00077                 }
00078                 catch(DOMException ex) {
00079                         success = (ex.code == DOMException.INDEX_SIZE_ERR);
00080                 }
00081                 assertTrue("throws_INDEX_SIZE_ERR",success);
00082         }
00083 
00084    }


The documentation for this class was generated from the following file:
Generated on Thu Feb 14 19:46:37 2002 for DOM Level 1 Core Test Suite by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001