/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.buckminster.model.common; import java.util.Map; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object ' * <em><b>Value</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.buckminster.model.common.Value#isMutable <em>Mutable * </em>}</li> * </ul> * </p> * * @see org.eclipse.buckminster.model.common.CommonPackage#getValue() * @model abstract="true" * @generated */ public interface Value extends EObject { /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @model * @generated */ String getValue(Map<String, String> properties); /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @model kind="operation" * @generated */ boolean isMultiValued(); /** * Returns the value of the '<em><b>Mutable</b></em>' attribute. The default * value is <code>"true"</code>. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mutable</em>' attribute isn't clear, there * really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Mutable</em>' attribute. * @see #setMutable(boolean) * @see org.eclipse.buckminster.model.common.CommonPackage#getValue_Mutable() * @model default="true" * @generated */ boolean isMutable(); /** * Sets the value of the ' * {@link org.eclipse.buckminster.model.common.Value#isMutable * <em>Mutable</em>}' attribute. <!-- begin-user-doc --> <!-- end-user-doc * --> * * @param value * the new value of the '<em>Mutable</em>' attribute. * @see #isMutable() * @generated */ void setMutable(boolean value); } // Value