blob: 690888f09b22b9b145a91f28bed1ab4e00d1ded3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2022 CEA LIST.
*
* 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:
* Saadia Dhouib (CEA LIST) saadia.dhouib@cea.fr
* Fadwa Tmar (CEA LIST) fadwa.tmar@cea.fr
*******************************************************************************/
/**
*/
package org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library;
import java.lang.String;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Localized Text</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.LocalizedText#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.LocalizedText#getLocal <em>Local</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.OPC_UA_LibraryPackage#getLocalizedText()
* @model
* @generated
*/
public interface LocalizedText extends EObject {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>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>Value</em>' attribute.
* @see #setValue(String)
* @see org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.OPC_UA_LibraryPackage#getLocalizedText_Value()
* @model dataType="org.eclipse.uml2.types.String" required="true" ordered="false"
* @generated
*/
String getValue();
/**
* Sets the value of the '{@link org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.LocalizedText#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(String value);
/**
* Returns the value of the '<em><b>Local</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Local</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>Local</em>' containment reference.
* @see #setLocal(LocalId)
* @see org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.OPC_UA_LibraryPackage#getLocalizedText_Local()
* @model containment="true" required="true" ordered="false"
* @generated
*/
LocalId getLocal();
/**
* Sets the value of the '{@link org.eclipse.papyrus.opcua.opcuaprofile.OPC_UA_Library.LocalizedText#getLocal <em>Local</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Local</em>' containment reference.
* @see #getLocal()
* @generated
*/
void setLocal(LocalId value);
} // LocalizedText