All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.ocl.utilities.CallingASTNode Maven / Gradle / Ivy

/**
 * 
 * 
 * Copyright (c) 2006, 2007 IBM Corporation 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
 * 
 * 
 *
 * $Id: CallingASTNode.java,v 1.6 2009/12/22 18:54:06 ewillink Exp $
 */
package org.eclipse.ocl.utilities;

/**
 * 
 * A representation of the model object 'Calling AST Node'.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.ocl.utilities.CallingASTNode#getPropertyStartPosition Property Start Position}
  • *
  • {@link org.eclipse.ocl.utilities.CallingASTNode#getPropertyEndPosition Property End Position}
  • *
*

* * @see org.eclipse.ocl.utilities.UtilitiesPackage#getCallingASTNode() * @model interface="true" abstract="true" * @generated */ public interface CallingASTNode extends ASTNode { /** * Returns the value of the 'Property Start Position' attribute. * The default value is "-1". * *

* If the meaning of the 'Property Start Position' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Property Start Position' attribute. * @see #setPropertyStartPosition(int) * @see org.eclipse.ocl.utilities.UtilitiesPackage#getCallingASTNode_PropertyStartPosition() * @model default="-1" transient="true" * @generated */ int getPropertyStartPosition(); /** * Sets the value of the '{@link org.eclipse.ocl.utilities.CallingASTNode#getPropertyStartPosition Property Start Position}' attribute. * * * @param value the new value of the 'Property Start Position' attribute. * @see #getPropertyStartPosition() * @generated */ void setPropertyStartPosition(int value); /** * Returns the value of the 'Property End Position' attribute. * The default value is "-1". * *

* If the meaning of the 'Property End Position' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Property End Position' attribute. * @see #setPropertyEndPosition(int) * @see org.eclipse.ocl.utilities.UtilitiesPackage#getCallingASTNode_PropertyEndPosition() * @model default="-1" transient="true" * @generated */ int getPropertyEndPosition(); /** * Sets the value of the '{@link org.eclipse.ocl.utilities.CallingASTNode#getPropertyEndPosition Property End Position}' attribute. * * * @param value the new value of the 'Property End Position' attribute. * @see #getPropertyEndPosition() * @generated */ void setPropertyEndPosition(int value); } // CallingASTNode




© 2015 - 2024 Weber Informatics LLC | Privacy Policy