blob: 700fb2c7bff7b7ba818d3ffd575e85f622c42227 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Fundación Tecnalia Research & Innovation.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Huascar Espinoza - initial API and implementation
* Alejandra Ruíz - initial API and implementation
* Idoya Del Río - initial API and implementation
* Mari Carmen Palacios - initial API and implementation
* Angel López - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.opencert.pam.procspec.process;
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 org.eclipse.opencert.pam.procspec.process.Organization#getAddress <em>Address</em>}</li>
* <li>{@link org.eclipse.opencert.pam.procspec.process.Organization#getSubOrganization <em>Sub Organization</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.opencert.pam.procspec.process.ProcessPackage#getOrganization()
* @model
* @generated
*/
public interface Organization extends Participant {
/**
* 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 org.eclipse.opencert.pam.procspec.process.ProcessPackage#getOrganization_Address()
* @model
* @generated
*/
String getAddress();
/**
* Sets the value of the '{@link org.eclipse.opencert.pam.procspec.process.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>Sub Organization</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.opencert.pam.procspec.process.Organization}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Sub Organization</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>Sub Organization</em>' containment reference list.
* @see org.eclipse.opencert.pam.procspec.process.ProcessPackage#getOrganization_SubOrganization()
* @model containment="true"
* @generated
*/
EList<Organization> getSubOrganization();
} // Organization