/** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. */ package org.sintef.thingml; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Config Property Assign</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.sintef.thingml.ConfigPropertyAssign#getInit <em>Init</em>}</li> * <li>{@link org.sintef.thingml.ConfigPropertyAssign#getProperty <em>Property</em>}</li> * <li>{@link org.sintef.thingml.ConfigPropertyAssign#getInstance <em>Instance</em>}</li> * <li>{@link org.sintef.thingml.ConfigPropertyAssign#getIndex <em>Index</em>}</li> * </ul> * * @see org.sintef.thingml.ThingmlPackage#getConfigPropertyAssign() * @model * @generated */ public interface ConfigPropertyAssign extends AnnotatedElement { /** * Returns the value of the '<em><b>Init</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Init</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>Init</em>' containment reference. * @see #setInit(Expression) * @see org.sintef.thingml.ThingmlPackage#getConfigPropertyAssign_Init() * @model containment="true" required="true" * @generated */ Expression getInit(); /** * Sets the value of the '{@link org.sintef.thingml.ConfigPropertyAssign#getInit <em>Init</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Init</em>' containment reference. * @see #getInit() * @generated */ void setInit(Expression value); /** * Returns the value of the '<em><b>Property</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Property</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Property</em>' reference. * @see #setProperty(Property) * @see org.sintef.thingml.ThingmlPackage#getConfigPropertyAssign_Property() * @model required="true" * @generated */ Property getProperty(); /** * Sets the value of the '{@link org.sintef.thingml.ConfigPropertyAssign#getProperty <em>Property</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Property</em>' reference. * @see #getProperty() * @generated */ void setProperty(Property value); /** * Returns the value of the '<em><b>Instance</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Instance</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>Instance</em>' containment reference. * @see #setInstance(InstanceRef) * @see org.sintef.thingml.ThingmlPackage#getConfigPropertyAssign_Instance() * @model containment="true" required="true" * @generated */ InstanceRef getInstance(); /** * Sets the value of the '{@link org.sintef.thingml.ConfigPropertyAssign#getInstance <em>Instance</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Instance</em>' containment reference. * @see #getInstance() * @generated */ void setInstance(InstanceRef value); /** * Returns the value of the '<em><b>Index</b></em>' containment reference list. * The list contents are of type {@link org.sintef.thingml.Expression}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Index</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Index</em>' containment reference list. * @see org.sintef.thingml.ThingmlPackage#getConfigPropertyAssign_Index() * @model containment="true" * @generated */ EList<Expression> getIndex(); } // ConfigPropertyAssign