// Module : $RCSfile: IGUIElementParameters.java,v $ // Version : $Revision: 0.0 $ $Author: pharms $ $Date: 17.08.2012 $ // Project : quest-core-events // Creation : 2012 by pharms // Copyright : Patrick Harms, 2012 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(); }