All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.api.model.StartCondition Maven / Gradle / Ivy

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy