Lines Matching refs:elem
354 * @param elem The specified element.
357 void appendSuiteToElement(Node elem, TestClass testSuite) {
359 Collection<Node> children = getSuiteChildren(elem);
381 appendSuiteToElementImpl(elem, testSuite);
388 * @param elem The specified element node.
391 Collection<Node> getSuiteChildren(Node elem) {
394 NodeList children = elem.getChildNodes();
410 * @param elem The test suite element.
413 void appendTestCases(Node elem, Collection<TestMethod> cases) {
416 elem.getParentNode().removeChild(elem);
422 Node caseNode = elem.appendChild(mDoc.createElement(TAG_TEST));
440 * @param elem The element to be set attribute.
444 protected void setAttribute(Node elem, String name, String value) {
448 elem.getAttributes().setNamedItem(attr);
454 * @param elem The element node.
458 private String getAttribute(Node elem, String name) {
459 return elem.getAttributes().getNamedItem(name).getNodeValue();
466 * @param elem The specified element node.
469 void appendSuiteToElementImpl(Node elem, TestClass testSuite) {
470 Node parent = elem;