new file: UnifyResultListener.java
new file: model/hashKeyType.java
This commit is contained in:
parent
666bf26594
commit
9d93fa63fa
@ -0,0 +1,7 @@
|
|||||||
|
package de.dhbwstuttgart.typeinference.unify;
|
||||||
|
|
||||||
|
public interface UnifyResultListener {
|
||||||
|
|
||||||
|
void onNewTypeResultFound(UnifyResultEvent evt);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
package de.dhbwstuttgart.typeinference.unify.model;
|
||||||
|
|
||||||
|
public class hashKeyType {
|
||||||
|
UnifyType realType;
|
||||||
|
|
||||||
|
hashKeyType(UnifyType realType) {
|
||||||
|
this.realType= realType;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object obj) {
|
||||||
|
if (obj instanceof hashKeyType) {
|
||||||
|
return realType.equals(((hashKeyType)obj).realType);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
return realType.hashCode();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user