Home | History | Annotate | Download | only in dom

Lines Matching defs:Prefix

34  * The "getPrefix()" method for a Node returns the namespace prefix of the node,
47 public final class Prefix extends DOMTestCase {
79 String prefix;
82 prefix = createdNode.getPrefix();
83 assertNull("throw_Null", prefix);
90 String prefix;
96 prefix = textNode.getPrefix();
97 assertNull("textNodePrefix", prefix);
103 String prefix;
108 prefix = testEmployee.getPrefix();
109 assertEquals("prefix", "emp", prefix);
115 String prefix;
119 prefix = testEmployee.getPrefix();
120 assertNull("throw_Null", prefix);