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

org.openl.ie.constrainer.ChoicePointLabel Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.ie.constrainer;

/**
 * 

* Title: *

*

* Description: *

*

* Copyright: Copyright (c) 2002 *

*

* Company: *

* * @author unascribed * @version 1.0 */ public class ChoicePointLabel implements java.io.Serializable { private final int _label; private final Constrainer _c; ChoicePointLabel(Constrainer c, int label) { _c = c; _label = label; } public boolean equals(ChoicePointLabel cpl) { return _label == cpl._label && _c == cpl._c; } @Override public int hashCode() { return _label; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy