/** * Copyright (c) 2015-2016 Inria * 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: * -Fawaz Paraiso <fawaz.paraiso@inria.fr> * - Philippe Merle <philippe.merle@inria.fr> */ package org.occiware.clouddesigner.occi.docker; import org.occiware.clouddesigner.occi.Link; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Volumesfrom</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.occiware.clouddesigner.occi.docker.Volumesfrom#getMode <em>Mode</em>}</li> * </ul> * * @see org.occiware.clouddesigner.occi.docker.DockerPackage#getVolumesfrom() * @model annotation="OCCIE2Ecore title='VolumsFrom'" * @generated */ public interface Volumesfrom extends Link { /** * Returns the value of the '<em><b>Mode</b></em>' attribute. * The default value is <code>"read_write"</code>. * The literals are from the enumeration {@link org.occiware.clouddesigner.occi.docker.Mode}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mode</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Mode</em>' attribute. * @see org.occiware.clouddesigner.occi.docker.Mode * @see #setMode(Mode) * @see org.occiware.clouddesigner.occi.docker.DockerPackage#getVolumesfrom_Mode() * @model default="read_write" * annotation="OCCIE2Ecore description='The mode of this VolumesFrom instance'" * @generated */ Mode getMode(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.docker.Volumesfrom#getMode <em>Mode</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Mode</em>' attribute. * @see org.occiware.clouddesigner.occi.docker.Mode * @see #getMode() * @generated */ void setMode(Mode value); } // Volumesfrom