File size: 401 Bytes
e789b06 |
1 2 3 4 5 6 7 8 9 10 11 |
TDAT: public boolean equals(Object obj) { if (obj == null || (obj.getClass() != getClass())) { return false; } CSSConditionalSelectorImpl s = (CSSConditionalSelectorImpl)obj; return (s.simpleSelector.equals(simpleSelector) && s.condition.equals(condition)); } COM: <s> indicates whether some other object is equal to this one </s> |