package de.ugoe.cs.quest.eventcore.guimodel; /** *

* TODO comment *

* * @version $Revision: $ $Date: 17.08.2012$ * @author 2012, last modified by $Author: pharms$ */ public interface IGUIElementSpec { /** *

* TODO: comment *

* * @return */ public String getType(); /** *

* TODO: comment *

* * @param other * @return */ public boolean getSimilarity(IGUIElementSpec other); /** *

* TODO: comment *

* * @param other * @return */ public boolean equals(IGUIElementSpec other); /** *

* TODO: comment *

* * @return */ public int hashCode(); }