//------------------------------------------------------------------------------ // Copyright (c) 2005, 2006 IBM Corporation and others. // 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: // IBM Corporation - initial implementation //------------------------------------------------------------------------------ package org.eclipse.epf.uma; import java.util.List; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Domain</b></em>'. * <!-- end-user-doc --> * * <!-- begin-model-doc --> * Domain is a refineable hierarchy grouping related work products. In other words, Domains can be further divided into sub-domains, with work product elements to be categorized only at the leaf-level of this hierarchy. * Domain is a logical grouping of work products that have an affinity to each other based on resources, timing, or relationship. A Domain may be divided into subdomains. For example, GS Method uses six predefined Domains for Work Products: Application, Architecture, Business, Engagement, Operations and Organization. * * <!-- end-model-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.epf.uma.Domain#getWorkProducts <em>Work Products</em>}</li> * <li>{@link org.eclipse.epf.uma.Domain#getSubdomains <em>Subdomains</em>}</li> * </ul> * </p> * * @see org.eclipse.epf.uma.UmaPackage#getDomain() * @model * @generated */ public interface Domain extends ContentCategory { /** * Returns the value of the '<em><b>Work Products</b></em>' reference list. * The list contents are of type {@link org.eclipse.epf.uma.WorkProduct}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Work Products</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Work Products</em>' reference list. * @see org.eclipse.epf.uma.UmaPackage#getDomain_WorkProducts() * @model ordered="false" * @generated */ List<WorkProduct> getWorkProducts(); /** * Returns the value of the '<em><b>Subdomains</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.epf.uma.Domain}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Subdomains</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>Subdomains</em>' containment reference list. * @see org.eclipse.epf.uma.UmaPackage#getDomain_Subdomains() * @model containment="true" resolveProxies="true" ordered="false" * @generated */ List<Domain> getSubdomains(); } // Domain