
sculptormetamodel.ValueObject Maven / Gradle / Ivy
/**
*/
package sculptormetamodel;
/**
*
* A representation of the model object 'Value Object'.
*
*
*
* The following features are supported:
*
* - {@link sculptormetamodel.ValueObject#isImmutable Immutable}
* - {@link sculptormetamodel.ValueObject#isPersistent Persistent}
*
*
*
* @see sculptormetamodel.SculptormetamodelPackage#getValueObject()
* @model
* @generated
*/
public interface ValueObject extends DomainObject
{
/**
* Returns the value of the 'Immutable' attribute.
* The default value is "true"
.
*
*
* If the meaning of the 'Immutable' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Immutable' attribute.
* @see #setImmutable(boolean)
* @see sculptormetamodel.SculptormetamodelPackage#getValueObject_Immutable()
* @model default="true"
* @generated
*/
boolean isImmutable();
/**
* Sets the value of the '{@link sculptormetamodel.ValueObject#isImmutable Immutable}' attribute.
*
*
* @param value the new value of the 'Immutable' attribute.
* @see #isImmutable()
* @generated
*/
void setImmutable(boolean value);
/**
* Returns the value of the 'Persistent' attribute.
* The default value is "true"
.
*
*
* If the meaning of the 'Persistent' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Persistent' attribute.
* @see #setPersistent(boolean)
* @see sculptormetamodel.SculptormetamodelPackage#getValueObject_Persistent()
* @model default="true"
* @generated
*/
boolean isPersistent();
/**
* Sets the value of the '{@link sculptormetamodel.ValueObject#isPersistent Persistent}' attribute.
*
*
* @param value the new value of the 'Persistent' attribute.
* @see #isPersistent()
* @generated
*/
void setPersistent(boolean value);
} // ValueObject
© 2015 - 2025 Weber Informatics LLC | Privacy Policy