/** * 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>Has Version</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.evidence.HasVersion#getVersion <em>Version</em>}</li> * </ul> * </p> * * @see net.certware.evidence.evidence.EvidencePackage#getHasVersion() * @model * @generated */ public interface HasVersion extends DocumentProperty { /** * Returns the value of the '<em><b>Version</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Version</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Version</em>' attribute. * @see #setVersion(String) * @see net.certware.evidence.evidence.EvidencePackage#getHasVersion_Version() * @model * @generated */ String getVersion(); /** * Sets the value of the '{@link net.certware.evidence.evidence.HasVersion#getVersion <em>Version</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Version</em>' attribute. * @see #getVersion() * @generated */ void setVersion(String value); } // HasVersion