Home | History | Annotate | Download | only in core

Lines Matching refs:hasAttributes

34  *  The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node without attributes. Verify if hasAttributes returns false.
36 * Retreive another element node with attributes. Verify if hasAttributes returns true.
66 boolean hasAttributes;
70 hasAttributes = element.hasAttributes();
71 assertFalse("nodehasattributes01_1", hasAttributes);
74 hasAttributes = element.hasAttributes();
75 assertTrue("nodehasattributes01_2", hasAttributes);