Пример #1
0
 public synchronized boolean equals(java.lang.Object obj) {
   if (!(obj instanceof LineItem)) return false;
   LineItem other = (LineItem) obj;
   if (obj == null) return false;
   if (this == obj) return true;
   if (__equalsCalc != null) {
     return (__equalsCalc == obj);
   }
   __equalsCalc = obj;
   boolean _equals;
   _equals =
       super.equals(obj)
           && ((this.targeting == null && other.getTargeting() == null)
               || (this.targeting != null && this.targeting.equals(other.getTargeting())));
   __equalsCalc = null;
   return _equals;
 }