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

org.plasma.sdo.ValueConstraint 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 allows a value constraint to be specified for a class attribute.
* 
* @author Plasma-Team
* @version 2.0.1
*/
public interface ValueConstraint{


    public Property getBase_Property();

    public void setBase_Property(Property value);

    public String getMinInclusive();

    public void setMinInclusive(String value);

    public String getMaxInclusive();

    public void setMaxInclusive(String value);

    public String getMinLength();

    public void setMinLength(String value);

    public String getMaxLength();

    public void setMaxLength(String value);

    public String getTotalDigits();

    public void setTotalDigits(String value);

    public String getFractionDigits();

    public void setFractionDigits(String value);

    public String getPattern();

    public void setPattern(String value);

    public String getMinExclusive();

    public void setMinExclusive(String value);

    public String getMaxExclusive();

    public void setMaxExclusive(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy