예제 #1
0
  /** @see de.willuhn.datasource.GenericObject#equals(de.willuhn.datasource.GenericObject) */
  public boolean equals(GenericObject other) throws RemoteException {
    if (other == null) return false;

    if (this.getID() == null || other.getID() == null) return false;

    return getID().equals(other.getID());
  }
예제 #2
0
 /** @see de.willuhn.datasource.GenericObject#equals(de.willuhn.datasource.GenericObject) */
 public boolean equals(GenericObject other) throws RemoteException {
   if (other == null || !(other instanceof Plugin)) return false;
   return this.getID().equals(other.getID());
 }
예제 #3
0
 /** @see de.willuhn.datasource.GenericObject#equals(de.willuhn.datasource.GenericObject) */
 public boolean equals(GenericObject arg0) throws RemoteException {
   if (arg0 == null) return false;
   return this.getID().equals(arg0.getID());
 }