blob: 96629acd4663efa9dfc189873365e385d9a278c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG 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:
* SAP AG - initial API and implementation
******************************************************************************
*/
package dataaccess.expressions;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>This</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Statically, the This expression has the type that owns its occurrence. This means, in order to determine this, the getType implementation needs to ascend the composition hierarchy until it finds a Class somewhere. The problem, again, is that an OCL expression cannot manufacture the result required becauce currently TypeDefinition is still an "entity type," meaning a MOF class whose instances have ID and an explicit life cycle.
*
* Therefore, currently This has to own its type definition, unfortunately.
* <!-- end-model-doc -->
*
*
* @see dataaccess.expressions.ExpressionsPackage#getThis()
* @model
* @generated
*/
public interface This extends Expression {
} // This