コード例 #1
0
ファイル: FoodProxy.java プロジェクト: uhuntgx00/cronometer
 public boolean equals(FoodProxy fp) {
   if (source != fp.getSource()) {
     return false;
   }
   if (!sourceID.equals(fp.getSourceID())) {
     return false;
   }
   if (!description.equals(fp.getDescription())) {
     return false;
   }
   return true;
 }