コード例 #1
0
 /**
  * Returns the hash code value for this object.
  *
  * @return Hash code value for this object.
  */
 public int hashCode() {
   int h = 31 * 17 + getName().hashCode();
   h = 31 * h + getActions().hashCode();
   if (subsystem != null) {
     h = 31 * h + subsystem.hashCode();
   }
   return h;
 }