Rena Tsantouli 2010-10-06 14:09:04 +00:00
parent 08d6c97604
commit 4bada34581
1 changed files with 7 additions and 0 deletions

View File

@ -50,5 +50,12 @@ public class SearchField implements Serializable, Cloneable{
// TODO Auto-generated method stub
return (SearchField) super.clone();
}
public boolean isEqual(SearchField sf) {
if (sf.name.equals(this.name) && sf.value.equals(this.value))
return true;
else
return false;
}
}