blob: db7ab5f7e01e4ffae45ba67979d84af2b7c80ea2 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Ui I1 8n Info</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiI18nInfo#getKey <em>Key</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.UiI18nInfo#isNoCaption <em>No Caption</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiI18nInfo()
* @model
* @generated
*/
public interface UiI18nInfo extends EObject {
/**
* Returns the value of the '<em><b>Key</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Key</em>' attribute isn't clear,
* there really should be more of a description here...
*
* <!-- end-user-doc -->
* @return the value of the '<em>Key</em>' attribute.
* @see #setKey(String)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiI18nInfo_Key()
* @model
* @generated
*/
String getKey();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiI18nInfo#getKey <em>Key</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Key</em>' attribute.
* @see #getKey()
* @generated
*/
void setKey(String value);
/**
* Returns the value of the '<em><b>No Caption</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>No Caption</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>No Caption</em>' attribute.
* @see #setNoCaption(boolean)
* @see org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage#getUiI18nInfo_NoCaption()
* @model
* @generated
*/
boolean isNoCaption();
/**
* Sets the value of the '{@link org.eclipse.osbp.ecview.semantic.uimodel.UiI18nInfo#isNoCaption <em>No Caption</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>No Caption</em>' attribute.
* @see #isNoCaption()
* @generated
*/
void setNoCaption(boolean value);
} // UiI18nInfo