blob: ed9a8924f0766d95554fa7a389c95c0961a031fc [file] [log] [blame]
/*******************************************************************************
* <copyright>
*
* Copyright (c) 2013, 2013 SAP AG.
* 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:
* SAP AG - initial API, implementation and documentation
*
* </copyright>
*
*******************************************************************************/
package org.eclipse.fmc.mm;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Access</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.fmc.mm.Access#getAgent <em>Agent</em>}</li>
* <li>{@link org.eclipse.fmc.mm.Access#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.fmc.mm.Access#getTarget <em>Target</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.fmc.mm.FmcPackage#getAccess()
* @model
* @generated
*/
public interface Access extends FMCConnection {
/**
* Returns the value of the '<em><b>Agent</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.Agent#getAccessConnections <em>Access Connections</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Agent</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Agent</em>' reference.
* @see #setAgent(Agent)
* @see org.eclipse.fmc.mm.FmcPackage#getAccess_Agent()
* @see org.eclipse.fmc.mm.Agent#getAccessConnections
* @model opposite="accessConnections" required="true"
* @generated
*/
Agent getAgent();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.Access#getAgent <em>Agent</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Agent</em>' reference.
* @see #getAgent()
* @generated
*/
void setAgent(Agent value);
/**
* Returns the value of the '<em><b>Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.fmc.mm.AccessType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Type</em>' attribute.
* @see org.eclipse.fmc.mm.AccessType
* @see #setType(AccessType)
* @see org.eclipse.fmc.mm.FmcPackage#getAccess_Type()
* @model required="true"
* @generated
*/
AccessType getType();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.Access#getType <em>Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Type</em>' attribute.
* @see org.eclipse.fmc.mm.AccessType
* @see #getType()
* @generated
*/
void setType(AccessType value);
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.fmc.mm.AccessTarget#getConnections <em>Connections</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target</em>' reference.
* @see #setTarget(AccessTarget)
* @see org.eclipse.fmc.mm.FmcPackage#getAccess_Target()
* @see org.eclipse.fmc.mm.AccessTarget#getConnections
* @model opposite="connections" required="true"
* @generated
*/
AccessTarget getTarget();
/**
* Sets the value of the '{@link org.eclipse.fmc.mm.Access#getTarget <em>Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(AccessTarget value);
} // Access