blob: e6a88e8b6cb35cf1ca6c2db176b6eb2ff312617a [file] [log] [blame]
package org.eclipse.jst.jsf.common.sets.constraint;
import org.eclipse.emf.common.util.Diagnostic;
import org.eclipse.jst.jsf.common.sets.AxiomaticSet;
/**
* A set constraint that is specific to members of the set.
* @author cbateman
*
*/
public class AbstractMemberConstraint extends AbstractSetConstraint {
public Diagnostic isSatisfied(AxiomaticSet set) {
return null;
}
}