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

org.openl.domain.IDomain Maven / Gradle / Ivy

The newest version!
/**
 * Created Apr 6, 2007
 */
package org.openl.domain;

/**
 * @author snshor
 */

public interface IDomain extends Iterable {

    /**
     * @return type that can be used with this domain
     */
    IType getElementType();

    /**
     * @param obj
     * @return true if object belongs to this domain
     */
    boolean selectObject(T obj);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy