Roll android_tools support library to 25.1.0
[android_tools.git] / sdk / sources / android-23 / org / w3c / domts / level1 / core / hc_nodereplacechildinvalidnodetype.java
blob95c6371bf15d4cc56ad383f38ac6f76ad64d7361
2 /*
3 This Java source file was generated by test-to-java.xsl
4 and is a derived work from the source document.
5 The source document contained the following notice:
8 Copyright (c) 2001-2003 World Wide Web Consortium,
9 (Massachusetts Institute of Technology, Institut National de
10 Recherche en Informatique et en Automatique, Keio University). All
11 Rights Reserved. This program is distributed under the W3C's Software
12 Intellectual Property License. This program is distributed in the
13 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE.
16 See W3C License http://www.w3.org/Consortium/Legal/ for more details.
20 package org.w3c.domts.level1.core;
22 import org.w3c.dom.*;
25 import org.w3c.domts.DOMTestCase;
26 import org.w3c.domts.DOMTestDocumentBuilderFactory;
30 /**
31 * The "replaceChild(newChild,oldChild)" method raises a
32 * HIERARCHY_REQUEST_ERR DOMException if this node is of
33 * a type that does not allow children of the type "newChild"
34 * to be inserted.
36 * Retrieve the root node and attempt to replace
37 * one of its children with a newly created Attr node.
38 * An Element node cannot have children of the "Attr"
39 * type, therefore the desired exception should be raised.
40 * @author Curt Arnold
41 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='HIERARCHY_REQUEST_ERR'])">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='HIERARCHY_REQUEST_ERR'])</a>
42 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-785887307">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-785887307</a>
43 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-785887307')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='HIERARCHY_REQUEST_ERR'])">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-785887307')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='HIERARCHY_REQUEST_ERR'])</a>
44 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-785887307">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-785887307</a>
45 * @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=247">http://www.w3.org/Bugs/Public/show_bug.cgi?id=247</a>
46 * @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=249">http://www.w3.org/Bugs/Public/show_bug.cgi?id=249</a>
47 * @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=406">http://www.w3.org/Bugs/Public/show_bug.cgi?id=406</a>
49 public final class hc_nodereplacechildinvalidnodetype extends DOMTestCase {
51 /**
52 * Constructor.
53 * @param factory document factory, may not be null
54 * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
56 public hc_nodereplacechildinvalidnodetype(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException {
57 super(factory);
60 // check if loaded documents are supported for content type
62 String contentType = getContentType();
63 preload(contentType, "hc_staff", true);
66 /**
67 * Runs the test case.
68 * @throws Throwable Any uncaught exception causes test to fail
70 public void runTest() throws Throwable {
71 Document doc;
72 Element rootNode;
73 Node newChild;
74 NodeList elementList;
75 Node oldChild;
76 Node replacedChild;
77 doc = (Document) load("hc_staff", true);
78 newChild = doc.createAttribute("lang");
79 elementList = doc.getElementsByTagName("p");
80 oldChild = elementList.item(1);
81 rootNode = (Element) oldChild.getParentNode();
84 boolean success = false;
85 try {
86 replacedChild = rootNode.replaceChild(newChild, oldChild);
87 } catch (DOMException ex) {
88 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
90 assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
93 /**
94 * Gets URI that identifies the test.
95 * @return uri identifier of test
97 public String getTargetURI() {
98 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_nodereplacechildinvalidnodetype";
101 * Runs this test from the command line.
102 * @param args command line arguments
104 public static void main(final String[] args) {
105 DOMTestCase.doMain(hc_nodereplacechildinvalidnodetype.class, args);