blob: 4598e7059abab03dbcbb94877d27e3114d768ac6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2018 CEA LIST 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:
* E.D.Willink(CEA LIST) - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.codegen.cgmodel;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>CG Text</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A CGText supports provision of literal language-specific text as an inline contribution to the generate code.
* (e.g. the initialization of an evaluator).
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.CGText#getTextValue <em>Text Value</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGText()
* @generated
*/
public interface CGText extends CGConstant {
/**
* Returns the value of the '<em><b>Text Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* the string value
* <!-- end-model-doc -->
* @return the value of the '<em>Text Value</em>' attribute.
* @see #setTextValue(String)
* @see org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage#getCGText_TextValue()
* @generated
*/
String getTextValue();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.codegen.cgmodel.CGText#getTextValue <em>Text Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Text Value</em>' attribute.
* @see #getTextValue()
* @generated
*/
void setTextValue(String value);
} // CGText