blob: 403d784347a2ff9a30d7444b20db5df452431798 [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
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
* generated from ActionDSL.xcore
*
*
*/
package org.eclipse.osbp.xtext.action;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Action Button</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.action.ActionButton#isDescription <em>Description</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.action.ActionButton#getDescriptionValue <em>Description Value</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.action.ActionButton#getCommand <em>Command</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionButton()
* @model
* @generated
*/
public interface ActionButton extends ActionToolbarItem {
/**
* Returns the value of the '<em><b>Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(boolean)
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionButton_Description()
* @model unique="false"
* @generated
*/
boolean isDescription();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.action.ActionButton#isDescription <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' attribute.
* @see #isDescription()
* @generated
*/
void setDescription(boolean value);
/**
* Returns the value of the '<em><b>Description Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description Value</em>' attribute.
* @see #setDescriptionValue(String)
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionButton_DescriptionValue()
* @model unique="false"
* @generated
*/
String getDescriptionValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.action.ActionButton#getDescriptionValue <em>Description Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description Value</em>' attribute.
* @see #getDescriptionValue()
* @generated
*/
void setDescriptionValue(String value);
/**
* Returns the value of the '<em><b>Command</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Command</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Command</em>' reference.
* @see #setCommand(ActionCommand)
* @see org.eclipse.osbp.xtext.action.ActionDSLPackage#getActionButton_Command()
* @model
* @generated
*/
ActionCommand getCommand();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.action.ActionButton#getCommand <em>Command</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Command</em>' reference.
* @see #getCommand()
* @generated
*/
void setCommand(ActionCommand value);
} // ActionButton