blob: cec5340511e46181fcc197c3766809bde8471d30 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Lunifera GmbH (Wien), Loetz GmbH&Co.KG (Heidelberg)
* 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
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Florian Pirchner - Initial implementation
*
*/
package org.eclipse.osbp.dsl.semantic.common.types;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>LModifier</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.dsl.semantic.common.types.LModifier#isFinal <em>Final</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.common.types.LModifier#isStatic <em>Static</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.common.types.LModifier#getVisibility <em>Visibility</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.dsl.semantic.common.types.OSBPTypesPackage#getLModifier()
* @generated
*/
public interface LModifier extends LLazyResolver {
/**
* Returns the value of the '<em><b>Final</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Final</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Final</em>' attribute.
* @see #setFinal(boolean)
* @see org.eclipse.osbp.dsl.semantic.common.types.OSBPTypesPackage#getLModifier_Final()
* @generated
*/
boolean isFinal();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.common.types.LModifier#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>Static</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Static</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Static</em>' attribute.
* @see #setStatic(boolean)
* @see org.eclipse.osbp.dsl.semantic.common.types.OSBPTypesPackage#getLModifier_Static()
* @generated
*/
boolean isStatic();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.common.types.LModifier#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>Visibility</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.dsl.semantic.common.types.LVisibility}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Visibility</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Visibility</em>' attribute.
* @see org.eclipse.osbp.dsl.semantic.common.types.LVisibility
* @see #setVisibility(LVisibility)
* @see org.eclipse.osbp.dsl.semantic.common.types.OSBPTypesPackage#getLModifier_Visibility()
* @generated
*/
LVisibility getVisibility();
/**
* Sets the value of the '{@link org.eclipse.osbp.dsl.semantic.common.types.LModifier#getVisibility <em>Visibility</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Visibility</em>' attribute.
* @see org.eclipse.osbp.dsl.semantic.common.types.LVisibility
* @see #getVisibility()
* @generated
*/
void setVisibility(LVisibility value);
} // LModifier