org.bidib.wizard.api.model.StartCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
The newest version!
package org.bidib.wizard.api.model;
public abstract class StartCondition {
public boolean equals(Object obj) {
return getClass().getSimpleName().equals(obj.getClass().getSimpleName());
}
public int hashCode() {
return getClass().getSimpleName().hashCode();
}
}