blob: 2d121cc6d8b591beef88975280764433a6ce3fda [file] [log] [blame]
/**
* Copyright (c) 2020 Willink Transformations 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 - Initial API and implementation
*/
package org.eclipse.ocl.examples.xtext.idioms;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Referred Locator</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* A ReferredLocator references a LocatorDefinition in an optionally distinct IdiomsModel.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext.idioms.ReferredLocator#getIdiomsModel <em>Idioms Model</em>}</li>
* <li>{@link org.eclipse.ocl.examples.xtext.idioms.ReferredLocator#getLocatorDeclaration <em>Locator Declaration</em>}</li>
* </ul>
*
* @see org.eclipse.ocl.examples.xtext.idioms.IdiomsPackage#getReferredLocator()
* @model
* @generated
*/
public interface ReferredLocator
extends Locator {
/**
* Returns the value of the '<em><b>Idioms Model</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Idioms Model</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Idioms Model</em>' reference.
* @see #setIdiomsModel(IdiomsModel)
* @see org.eclipse.ocl.examples.xtext.idioms.IdiomsPackage#getReferredLocator_IdiomsModel()
* @model
* @generated
*/
IdiomsModel getIdiomsModel();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.idioms.ReferredLocator#getIdiomsModel <em>Idioms Model</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Idioms Model</em>' reference.
* @see #getIdiomsModel()
* @generated
*/
void setIdiomsModel(IdiomsModel value);
/**
* Returns the value of the '<em><b>Locator Declaration</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Locator Declaration</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Locator Declaration</em>' reference.
* @see #setLocatorDeclaration(LocatorDeclaration)
* @see org.eclipse.ocl.examples.xtext.idioms.IdiomsPackage#getReferredLocator_LocatorDeclaration()
* @model required="true"
* @generated
*/
LocatorDeclaration getLocatorDeclaration();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.idioms.ReferredLocator#getLocatorDeclaration <em>Locator Declaration</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Locator Declaration</em>' reference.
* @see #getLocatorDeclaration()
* @generated
*/
void setLocatorDeclaration(LocatorDeclaration value);
} // ReferredLocator