blob: b9c5066b9ea322d69def1e3ea9f8f3da4966f74e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2018 IBM Corporation, Zeligsoft Inc., and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
* Zeligsoft - Bug 243976
*******************************************************************************/
package org.eclipse.ocl.cst;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Integer Literal Exp CS</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.cst.IntegerLiteralExpCS#getIntegerSymbol <em>Integer Symbol</em>}</li>
* <li>{@link org.eclipse.ocl.cst.IntegerLiteralExpCS#getLongSymbol <em>Long Symbol</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.cst.CSTPackage#getIntegerLiteralExpCS()
* @model features="extendedIntegerSymbol"
* extendedIntegerSymbolDefault="0" extendedIntegerSymbolDataType="org.eclipse.emf.ecore.ELongObject" extendedIntegerSymbolChangeable="false" extendedIntegerSymbolSuppressedGetVisibility="true"
* @generated
*/
public interface IntegerLiteralExpCS
extends PrimitiveLiteralExpCS {
/**
* Returns the value of the '<em><b>Integer Symbol</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Integer Symbol</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Integer Symbol</em>' attribute.
* @see #setIntegerSymbol(Integer)
* @see org.eclipse.ocl.cst.CSTPackage#getIntegerLiteralExpCS_IntegerSymbol()
* @model
* @generated
*/
Integer getIntegerSymbol();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.IntegerLiteralExpCS#getIntegerSymbol <em>Integer Symbol</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Integer Symbol</em>' attribute.
* @see #getIntegerSymbol()
* @generated
*/
void setIntegerSymbol(Integer value);
/**
* Returns the value of the '<em><b>Long Symbol</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Long Symbol</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* @since 3.2
* <!-- end-user-doc -->
* @return the value of the '<em>Long Symbol</em>' attribute.
* @see #setLongSymbol(Long)
* @see org.eclipse.ocl.cst.CSTPackage#getIntegerLiteralExpCS_LongSymbol()
* @model transient="true" volatile="true" derived="true"
* @generated
*/
Long getLongSymbol();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.IntegerLiteralExpCS#getLongSymbol <em>Long Symbol</em>}' attribute.
* <!-- begin-user-doc -->
* @since 3.2
* <!-- end-user-doc -->
* @param value the new value of the '<em>Long Symbol</em>' attribute.
* @see #getLongSymbol()
* @generated
*/
void setLongSymbol(Long value);
} // IntegerLiteralExpCS