org.plasma.sdo.EnumerationConstraint Maven / Gradle / Ivy
//==============================================================================
//
// This software artifact was generated using Plasma
// provisioning tools. Do not modify.
//
//==============================================================================
package org.plasma.sdo;
import fUML.Syntax.Classes.Kernel.*;
/**
*
* This stereotype constrains a UML property by means of a given UML enumeration. It enables use of UML Enumerations which are part of the UML model when specifying a constraint on class properties. UML Enumerations used with this stereotype must be tagged with the SDOEnumeration stereotype.
*
* @author Plasma-Team
* @version 2.1.0
*/
public interface EnumerationConstraint{
public Property getBase_Property();
public void setBase_Property(Property value);
public Enumeration getValue();
public void setValue(Enumeration value);
}