예제 #1
0
파일: UpdateEvent.java 프로젝트: ktg/ect
 /** Internal IDL-generated equality test helper */
 public boolean _equals_helper(UpdateEvent c) {
   if (c == null) return false;
   if (!super._equals_helper(c)) return false;
   if (item != c.item && (item == null || !item.equals(c.item))) return false;
   return true;
 }
예제 #2
0
파일: UpdateEvent.java 프로젝트: ktg/ect
 /** Internal IDL-generated match test helper */
 public boolean _matches_helper(UpdateEvent c) {
   if (c == null) return false;
   if (!super._matches_helper(c)) return false;
   if (item != null && !item.matches(c.item)) return false;
   return true;
 }