Beispiel #1
0
 /* Compare based on class signature */
 public int compareTo(Object o) {
   if (o == this) {
     return 0;
   }
   if (!(o instanceof ProxyType)) {
     return -1;
   }
   ProxyType other = (ProxyType) o;
   return getSignature().compareTo(other.getSignature());
 }