/** * 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. (generated models) */ package net.certware.evidence.evidence; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Organization</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.certware.evidence.evidence.Organization#getAddress <em>Address</em>}</li> * <li>{@link net.certware.evidence.evidence.Organization#getAffiliation <em>Affiliation</em>}</li> * </ul> * </p> * * @see net.certware.evidence.evidence.EvidencePackage#getOrganization() * @model * @generated */ public interface Organization extends Originator { /** * Returns the value of the '<em><b>Address</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Address</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Address</em>' attribute. * @see #setAddress(String) * @see net.certware.evidence.evidence.EvidencePackage#getOrganization_Address() * @model * @generated */ String getAddress(); /** * Sets the value of the '{@link net.certware.evidence.evidence.Organization#getAddress <em>Address</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Address</em>' attribute. * @see #getAddress() * @generated */ void setAddress(String value); /** * Returns the value of the '<em><b>Affiliation</b></em>' containment reference list. * The list contents are of type {@link net.certware.evidence.evidence.HasRoleIn}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Affiliation</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Affiliation</em>' containment reference list. * @see net.certware.evidence.evidence.EvidencePackage#getOrganization_Affiliation() * @model containment="true" * @generated */ EList<HasRoleIn> getAffiliation(); } // Organization