blob: 9433d047d62cd96fcc7ef0a785c4ba9e6ea52164 [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.osbp.xtext.table.Table;
import org.eclipse.xtext.common.types.JvmTypeReference;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Perspective Grid</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.perspective.PerspectiveGrid#getRef <em>Ref</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.perspective.PerspectiveGrid#getRefTypeJvm <em>Ref Type Jvm</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveGrid()
* @model
* @generated
*/
public interface PerspectiveGrid extends PerspectiveView {
/**
* Returns the value of the '<em><b>Ref</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ref</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ref</em>' reference.
* @see #setRef(Table)
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveGrid_Ref()
* @model
* @generated
*/
Table getRef();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.perspective.PerspectiveGrid#getRef <em>Ref</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ref</em>' reference.
* @see #getRef()
* @generated
*/
void setRef(Table value);
/**
* Returns the value of the '<em><b>Ref Type Jvm</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ref Type Jvm</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ref Type Jvm</em>' containment reference.
* @see #setRefTypeJvm(JvmTypeReference)
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveGrid_RefTypeJvm()
* @model containment="true" resolveProxies="true"
* @generated
*/
JvmTypeReference getRefTypeJvm();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.perspective.PerspectiveGrid#getRefTypeJvm <em>Ref Type Jvm</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ref Type Jvm</em>' containment reference.
* @see #getRefTypeJvm()
* @generated
*/
void setRefTypeJvm(JvmTypeReference value);
} // PerspectiveGrid