Lines Matching defs:object
285 * object. To be equivalent, all of the following conditions must be true:
288 * <CODE>object</CODE> is not null.
290 * <CODE>object</CODE> is an instance of class ResolutionSyntax.
293 * <CODE>object</CODE>'s cross feed direction resolution.
296 * <CODE>object</CODE>'s feed direction resolution.
299 * @param object Object to compare to.
301 * @return True if <CODE>object</CODE> is equivalent to this resolution
304 public boolean equals(Object object) {
306 return(object != null &&
307 object instanceof ResolutionSyntax &&
309 ((ResolutionSyntax) object).crossFeedResolution &&
311 ((ResolutionSyntax) object).feedResolution);