Lines Matching refs:object
108 * @return A hashcode value for this object.
116 * object. To be equivalent, all of the following conditions must be true:
119 * <CODE>object</CODE> is not null.
121 * <CODE>object</CODE> is an instance of class TextSyntax.
123 * This text attribute's underlying string and <CODE>object</CODE>'s
126 * This text attribute's locale and <CODE>object</CODE>'s locale are
130 * @param object Object to compare to.
132 * @return True if <CODE>object</CODE> is equivalent to this text
135 public boolean equals(Object object) {
136 return(object != null &&
137 object instanceof TextSyntax &&
138 this.value.equals (((TextSyntax) object).value) &&
139 this.locale.equals (((TextSyntax) object).locale));
146 * @return A String identifying this object.