Home | History | Annotate | Download | only in utils

Lines Matching refs:elem

366          * @param elem The specified element.
369 void appendSuiteToElement(Node elem, TestClass testSuite) {
371 Collection<Node> children = getSuiteChildren(elem);
393 appendSuiteToElementImpl(elem, testSuite);
400 * @param elem The specified element node.
403 Collection<Node> getSuiteChildren(Node elem) {
406 NodeList children = elem.getChildNodes();
422 * @param elem The test suite element.
425 void appendTestCases(Node elem, Collection<TestMethod> cases) {
428 elem.getParentNode().removeChild(elem);
434 Node caseNode = elem.appendChild(mDoc.createElement(TAG_TEST));
458 * @param elem The element to be set attribute.
462 protected void setAttribute(Node elem, String name, String value) {
466 elem.getAttributes().setNamedItem(attr);
472 * @param elem The element node.
476 private String getAttribute(Node elem, String name) {
477 return elem.getAttributes().getNamedItem(name).getNodeValue();
484 * @param elem The specified element node.
487 void appendSuiteToElementImpl(Node elem, TestClass testSuite) {
488 Node parent = elem;