blob: cbebce882e72ba3d0e33f8bdb9faf0cd0728b24a [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html\n\nContributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.infrastructure;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Modifier</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isStatic <em>Static</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isFinal <em>Final</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isReference <em>Reference</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isVolatile <em>Volatile</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isTransient <em>Transient</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isOptional <em>Optional</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier()
* @model
* @generated
*/
public interface Modifier extends EObject {
/**
* Returns the value of the '<em><b>Static</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Static</em>' attribute.
* @see #setStatic(boolean)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier_Static()
* @model default="false" required="true"
* @generated
*/
boolean isStatic();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isStatic <em>Static</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Static</em>' attribute.
* @see #isStatic()
* @generated
*/
void setStatic(boolean value);
/**
* Returns the value of the '<em><b>Final</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Final</em>' attribute.
* @see #setFinal(boolean)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier_Final()
* @model default="false" required="true"
* @generated
*/
boolean isFinal();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isFinal <em>Final</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Final</em>' attribute.
* @see #isFinal()
* @generated
*/
void setFinal(boolean value);
/**
* Returns the value of the '<em><b>Reference</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Reference</em>' attribute.
* @see #setReference(boolean)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier_Reference()
* @model default="false" required="true"
* @generated
*/
boolean isReference();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isReference <em>Reference</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Reference</em>' attribute.
* @see #isReference()
* @generated
*/
void setReference(boolean value);
/**
* Returns the value of the '<em><b>Volatile</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Volatile</em>' attribute.
* @see #setVolatile(boolean)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier_Volatile()
* @model default="false" required="true"
* @generated
*/
boolean isVolatile();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isVolatile <em>Volatile</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Volatile</em>' attribute.
* @see #isVolatile()
* @generated
*/
void setVolatile(boolean value);
/**
* Returns the value of the '<em><b>Transient</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Transient</em>' attribute.
* @see #setTransient(boolean)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier_Transient()
* @model default="false" required="true"
* @generated
*/
boolean isTransient();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isTransient <em>Transient</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Transient</em>' attribute.
* @see #isTransient()
* @generated
*/
void setTransient(boolean value);
/**
* Returns the value of the '<em><b>Optional</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Optional</em>' attribute.
* @see #setOptional(boolean)
* @see org.eclipse.efm.ecore.formalml.infrastructure.InfrastructurePackage#getModifier_Optional()
* @model default="false" required="true"
* @generated
*/
boolean isOptional();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.infrastructure.Modifier#isOptional <em>Optional</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Optional</em>' attribute.
* @see #isOptional()
* @generated
*/
void setOptional(boolean value);
} // Modifier