/** * Copyright (c) 2015-2016 Obeo, 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: * - William Piers <william.piers@obeo.fr> * - Philippe Merle <philippe.merle@inria.fr> */ package org.occiware.clouddesigner.occi.linkeddata; import org.occiware.clouddesigner.occi.Resource; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Ldproject</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.occiware.clouddesigner.occi.linkeddata.Ldproject#getName <em>Name</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.linkeddata.Ldproject#isPublished <em>Published</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.linkeddata.Ldproject#isRobust <em>Robust</em>}</li> * </ul> * * @see org.occiware.clouddesigner.occi.linkeddata.LinkeddataPackage#getLdproject() * @model annotation="OCCIE2Ecore title='LDProject'" * @generated */ public interface Ldproject extends Resource { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.occiware.clouddesigner.occi.linkeddata.LinkeddataPackage#getLdproject_Name() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getName(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.linkeddata.Ldproject#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Published</b></em>' attribute. * The default value is <code>"false"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Published</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Published</em>' attribute. * @see #setPublished(boolean) * @see org.occiware.clouddesigner.occi.linkeddata.LinkeddataPackage#getLdproject_Published() * @model default="false" dataType="org.occiware.clouddesigner.occi.Boolean" * annotation="OCCIE2Ecore description='null'" * @generated */ boolean isPublished(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.linkeddata.Ldproject#isPublished <em>Published</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Published</em>' attribute. * @see #isPublished() * @generated */ void setPublished(boolean value); /** * Returns the value of the '<em><b>Robust</b></em>' attribute. * The default value is <code>"true"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Robust</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Robust</em>' attribute. * @see #setRobust(boolean) * @see org.occiware.clouddesigner.occi.linkeddata.LinkeddataPackage#getLdproject_Robust() * @model default="true" dataType="org.occiware.clouddesigner.occi.Boolean" * annotation="OCCIE2Ecore description='null'" * @generated */ boolean isRobust(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.linkeddata.Ldproject#isRobust <em>Robust</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Robust</em>' attribute. * @see #isRobust() * @generated */ void setRobust(boolean value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model annotation="OCCIE2Ecore title='null'" * @generated */ void publish(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model annotation="OCCIE2Ecore title='null'" * @generated */ void unpublish(); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model annotation="OCCIE2Ecore title='null'" * @generated */ void update(); } // Ldproject