blob: 4f006e88ad27fed2309793d01e792b2a68d104c0 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.perspective;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Perspective Event</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.perspective.PerspectiveEvent#getTarget <em>Target</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.perspective.PerspectiveEvent#getAllowedsources <em>Allowedsources</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveEvent()
* @model
* @generated
*/
public interface PerspectiveEvent extends EObject {
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* <!-- 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(PerspectivePart)
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveEvent_Target()
* @model
* @generated
*/
PerspectivePart getTarget();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.perspective.PerspectiveEvent#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(PerspectivePart value);
/**
* Returns the value of the '<em><b>Allowedsources</b></em>' reference list.
* The list contents are of type {@link org.eclipse.osbp.xtext.perspective.PerspectivePart}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Allowedsources</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Allowedsources</em>' reference list.
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveEvent_Allowedsources()
* @model
* @generated
*/
EList<PerspectivePart> getAllowedsources();
} // PerspectiveEvent