org.eclipse.ocl.cst.DefCS Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2008 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 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
*
*
*
* $Id: DefCS.java,v 1.5 2009/12/22 18:42:30 ewillink Exp $
*/
package org.eclipse.ocl.cst;
/**
*
* A representation of the model object 'Def CS'.
*
*
*
* The following features are supported:
*
* - {@link org.eclipse.ocl.cst.DefCS#getDefExpressionCS Def Expression CS}
* - {@link org.eclipse.ocl.cst.DefCS#isStatic Static}
*
*
*
* @see org.eclipse.ocl.cst.CSTPackage#getDefCS()
* @model
* @generated
*/
public interface DefCS
extends InvOrDefCS {
/**
* Returns the value of the 'Def Expression CS' containment reference.
*
*
* If the meaning of the 'Def Expression CS' containment reference isn't clear,
* there really should be more of a description here...
*
*
* @return the value of the 'Def Expression CS' containment reference.
* @see #setDefExpressionCS(DefExpressionCS)
* @see org.eclipse.ocl.cst.CSTPackage#getDefCS_DefExpressionCS()
* @model containment="true"
* @generated
*/
DefExpressionCS getDefExpressionCS();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.DefCS#getDefExpressionCS Def Expression CS}' containment reference.
*
*
* @param value the new value of the 'Def Expression CS' containment reference.
* @see #getDefExpressionCS()
* @generated
*/
void setDefExpressionCS(DefExpressionCS value);
/**
* Returns the value of the 'Static' attribute.
* The default value is "false"
.
*
*
* If the meaning of the 'Static' attribute isn't clear,
* there really should be more of a description here...
*
* @since 3.0
*
* @return the value of the 'Static' attribute.
* @see #setStatic(boolean)
* @see org.eclipse.ocl.cst.CSTPackage#getDefCS_Static()
* @model default="false"
* @generated
*/
boolean isStatic();
/**
* Sets the value of the '{@link org.eclipse.ocl.cst.DefCS#isStatic Static}' attribute.
*
* @since 3.0
*
* @param value the new value of the 'Static' attribute.
* @see #isStatic()
* @generated
*/
void setStatic(boolean value);
} // DefCS