Esempio n. 1
0
 /**
  * _more_
  *
  * @param object _more_
  * @return _more_
  */
 public boolean equals(Object object) {
   if (object == this) {
     return true;
   }
   if (!(object instanceof PollingInfo)) {
     return false;
   }
   PollingInfo that = (PollingInfo) object;
   return (this.interval == that.interval)
       && (this.fileCount == that.fileCount)
       && (this.forFiles == that.forFiles)
       && (this.isActive == that.isActive)
       && (this.isHiddenOk == that.isHiddenOk)
       && Misc.equals(this.filePattern, that.filePattern)
       && Misc.equals(this.filePaths, that.filePaths);
 }