org.eclipse.ocl.cst.StringLiteralExpCS Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2009 IBM Corporation, Zeligsoft Inc., Borland Software Corp., and others.
* 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
*
* Contributors:
* IBM - Initial API and implementation
* Zeligsoft - Bug 243976
* Borland - Bug 242880
*
*
*
* $Id: StringLiteralExpCS.java,v 1.5 2009/12/22 18:42:30 ewillink Exp $
*/
package org.eclipse.ocl.cst;
/**
*
* A representation of the model object 'String Literal Exp CS'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.ocl.cst.StringLiteralExpCS#getStringSymbol String Symbol}
* - {@link org.eclipse.ocl.cst.StringLiteralExpCS#getUnescapedStringSymbol Unescaped String Symbol}
*
*
*
* @see org.eclipse.ocl.cst.CSTPackage#getStringLiteralExpCS()
* @model
* @generated
*/
public interface StringLiteralExpCS
extends PrimitiveLiteralExpCS {
/**
* Returns the value of the 'String Symbol' attribute.
*
*
* If the meaning of the 'String Symbol' attribute isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'String Symbol' attribute.
* @see #setStringSymbol(String)
* @see org.eclipse.ocl.cst.CSTPackage#getStringLiteralExpCS_StringSymbol()
* @model
* @generated
*/
String getStringSymbol();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.StringLiteralExpCS#getStringSymbol String Symbol}' attribute.
*
*
* @param value the new value of the 'String Symbol' attribute.
* @see #getStringSymbol()
* @generated
*/
void setStringSymbol(String value);
/**
* Returns the value of the 'Unescaped String Symbol' attribute.
*
*
* If the meaning of the 'Unescaped String Symbol' attribute isn't clear,
* there really should be more of a description here...
*
* @since 1.3
*
* @return the value of the 'Unescaped String Symbol' attribute.
* @see #setUnescapedStringSymbol(String)
* @see org.eclipse.ocl.cst.CSTPackage#getStringLiteralExpCS_UnescapedStringSymbol()
* @model
* @generated
*/
String getUnescapedStringSymbol();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.StringLiteralExpCS#getUnescapedStringSymbol Unescaped String Symbol}' attribute.
*
* @since 1.3
*
* @param value the new value of the 'Unescaped String Symbol' attribute.
* @see #getUnescapedStringSymbol()
* @generated
*/
void setUnescapedStringSymbol(String value);
} // StringLiteralExpCS