org.contextmapper.tactic.dsl.tacticdsl.Entity Maven / Gradle / Ivy
/**
* generated by Xtext 2.21.0
*/
package org.contextmapper.tactic.dsl.tacticdsl;
/**
*
* A representation of the model object 'Entity'.
*
*
*
* The following features are supported:
*
*
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Entity#getExtends Extends}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Entity#isNotOptimisticLocking Not Optimistic Locking}
* - {@link org.contextmapper.tactic.dsl.tacticdsl.Entity#isNotAuditable Not Auditable}
*
*
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEntity()
* @model
* @generated
*/
public interface Entity extends DomainObject
{
/**
* Returns the value of the 'Extends' reference.
*
*
* @return the value of the 'Extends' reference.
* @see #setExtends(Entity)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEntity_Extends()
* @model
* @generated
*/
Entity getExtends();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Entity#getExtends Extends}' reference.
*
*
* @param value the new value of the 'Extends' reference.
* @see #getExtends()
* @generated
*/
void setExtends(Entity value);
/**
* Returns the value of the 'Not Optimistic Locking' attribute.
*
*
* @return the value of the 'Not Optimistic Locking' attribute.
* @see #setNotOptimisticLocking(boolean)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEntity_NotOptimisticLocking()
* @model
* @generated
*/
boolean isNotOptimisticLocking();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Entity#isNotOptimisticLocking Not Optimistic Locking}' attribute.
*
*
* @param value the new value of the 'Not Optimistic Locking' attribute.
* @see #isNotOptimisticLocking()
* @generated
*/
void setNotOptimisticLocking(boolean value);
/**
* Returns the value of the 'Not Auditable' attribute.
*
*
* @return the value of the 'Not Auditable' attribute.
* @see #setNotAuditable(boolean)
* @see org.contextmapper.tactic.dsl.tacticdsl.TacticdslPackage#getEntity_NotAuditable()
* @model
* @generated
*/
boolean isNotAuditable();
/**
* Sets the value of the '{@link org.contextmapper.tactic.dsl.tacticdsl.Entity#isNotAuditable Not Auditable}' attribute.
*
*
* @param value the new value of the 'Not Auditable' attribute.
* @see #isNotAuditable()
* @generated
*/
void setNotAuditable(boolean value);
} // Entity