Home | History | Annotate | Download | only in objects

Lines Matching refs:obj2

281    * @param   obj2       the object to compare this <code>String</code>
289 public boolean equals(XMLString obj2)
292 if (this == obj2)
299 if (n == obj2.length())
307 if (fsb.charAt(i) != obj2.charAt(j))
325 * @param obj2 Object to compare this to
331 public boolean equals(XObject obj2)
334 if (this == obj2)
338 if(obj2.getType() == XObject.CLASS_NUMBER)
339 return obj2.equals(this);
341 String str = obj2.str();
410 * @param obj2 the object to compare this <code>String</code>
418 public boolean equals(Object obj2)
421 if (null == obj2)
424 if(obj2 instanceof XNumber)
425 return obj2.equals(this);
430 else if (obj2 instanceof XNodeSet)
431 return obj2.equals(this);
432 else if (obj2 instanceof XStringForFSB)
433 return equals((XMLString) obj2);
435 return equals(obj2.toString());