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

com.exigen.ie.constrainer.ChoicePointLabel Maven / Gradle / Ivy

package com.exigen.ie.constrainer;

/**
 * 

Title:

*

Description:

*

Copyright: Copyright (c) 2002

*

Company:

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy