org.openxma.dsl.ddl.ddlDsl.NullableConstraint Maven / Gradle / Ivy
The newest version!
/**
*
*
*
*/
package org.openxma.dsl.ddl.ddlDsl;
/**
*
* A representation of the model object 'Nullable Constraint'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.ddl.ddlDsl.NullableConstraint#isNot Not}
*
*
*
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getNullableConstraint()
* @model
* @generated
*/
public interface NullableConstraint extends Constraint
{
/**
* Returns the value of the 'Not' attribute.
*
*
* If the meaning of the 'Not' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Not' attribute.
* @see #setNot(boolean)
* @see org.openxma.dsl.ddl.ddlDsl.DdlDslPackage#getNullableConstraint_Not()
* @model
* @generated
*/
boolean isNot();
/**
* Sets the value of the '{@link org.openxma.dsl.ddl.ddlDsl.NullableConstraint#isNot Not}' attribute.
*
*
* @param value the new value of the 'Not' attribute.
* @see #isNot()
* @generated
*/
void setNot(boolean value);
} // NullableConstraint