org.openxma.dsl.dom.model.AttributeValidationProperty Maven / Gradle / Ivy
/**
*
*
*
* $Id: AttributeValidationProperty.java 10224 2013-01-04 15:48:48Z dschwarz $
*/
package org.openxma.dsl.dom.model;
import org.eclipse.emf.common.util.EList;
import org.openxma.dsl.core.model.Constraint;
import org.openxma.dsl.core.model.ValidatorReference;
/**
*
* A representation of the model object 'Attribute Validation Property'.
*
*
*
* The following features are supported:
*
* - {@link org.openxma.dsl.dom.model.AttributeValidationProperty#getConstraints Constraints}
* - {@link org.openxma.dsl.dom.model.AttributeValidationProperty#getFormat Format}
*
*
*
* @see org.openxma.dsl.dom.DomPackage#getAttributeValidationProperty()
* @model
* @generated
*/
public interface AttributeValidationProperty extends AttributeProperty {
/**
* Returns the value of the 'Constraints' containment reference list.
* The list contents are of type {@link org.openxma.dsl.core.model.Constraint}.
*
*
* If the meaning of the 'Constraints' containment reference list isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Constraints' containment reference list.
* @see org.openxma.dsl.dom.DomPackage#getAttributeValidationProperty_Constraints()
* @model containment="true"
* @generated
*/
EList getConstraints();
/**
* Returns the value of the 'Format' containment reference.
*
*
* If the meaning of the 'Format' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Format' containment reference.
* @see #setFormat(ValidatorReference)
* @see org.openxma.dsl.dom.DomPackage#getAttributeValidationProperty_Format()
* @model containment="true"
* @generated
*/
ValidatorReference getFormat();
/**
* Sets the value of the '{@link org.openxma.dsl.dom.model.AttributeValidationProperty#getFormat Format}' containment reference.
*
*
* @param value the new value of the 'Format' containment reference.
* @see #getFormat()
* @generated
*/
void setFormat(ValidatorReference value);
} // AttributeValidationProperty