blob: bfff0b67675d842e747e19fe16e2253ea1e4b104 [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Perspective Browser</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.perspective.PerspectiveBrowser#getUrl <em>Url</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.perspective.PerspectiveBrowser#isCubeView <em>Cube View</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveBrowser()
* @model
* @generated
*/
public interface PerspectiveBrowser extends PerspectiveView {
/**
* Returns the value of the '<em><b>Url</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Url</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Url</em>' attribute.
* @see #setUrl(String)
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveBrowser_Url()
* @model unique="false"
* @generated
*/
String getUrl();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.perspective.PerspectiveBrowser#getUrl <em>Url</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Url</em>' attribute.
* @see #getUrl()
* @generated
*/
void setUrl(String value);
/**
* Returns the value of the '<em><b>Cube View</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Cube View</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Cube View</em>' attribute.
* @see #setCubeView(boolean)
* @see org.eclipse.osbp.xtext.perspective.PerspectiveDslPackage#getPerspectiveBrowser_CubeView()
* @model unique="false"
* @generated
*/
boolean isCubeView();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.perspective.PerspectiveBrowser#isCubeView <em>Cube View</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Cube View</em>' attribute.
* @see #isCubeView()
* @generated
*/
void setCubeView(boolean value);
} // PerspectiveBrowser