hydra.langs.owl.syntax.DataProperty Maven / Gradle / Ivy
package hydra.langs.owl.syntax;
import java.io.Serializable;
public class DataProperty implements Serializable {
public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/owl/syntax.DataProperty");
public DataProperty () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof DataProperty)) {
return false;
}
DataProperty o = (DataProperty) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy