/** * Copyright (c) 2011 Object Management Group (SAEM metamodel) * Copyright (c) 2010-2011 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved. */ package net.certware.evidence.evidence; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Formal Object</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.evidence.FormalObject#getConcept <em>Concept</em>}</li> * <li>{@link net.certware.evidence.evidence.FormalObject#getUrl <em>Url</em>}</li> * </ul> * </p> * * @see net.certware.evidence.evidence.EvidencePackage#getFormalObject() * @model abstract="true" * @generated */ public interface FormalObject extends DomainObject { /** * Returns the value of the '<em><b>Concept</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Concept</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Concept</em>' attribute. * @see #setConcept(String) * @see net.certware.evidence.evidence.EvidencePackage#getFormalObject_Concept() * @model * @generated */ String getConcept(); /** * Sets the value of the '{@link net.certware.evidence.evidence.FormalObject#getConcept <em>Concept</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Concept</em>' attribute. * @see #getConcept() * @generated */ void setConcept(String value); /** * Returns the value of the '<em><b>Url</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Url</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Url</em>' attribute. * @see #setUrl(String) * @see net.certware.evidence.evidence.EvidencePackage#getFormalObject_Url() * @model * @generated */ String getUrl(); /** * Sets the value of the '{@link net.certware.evidence.evidence.FormalObject#getUrl <em>Url</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Url</em>' attribute. * @see #getUrl() * @generated */ void setUrl(String value); } // FormalObject