/** * Copyright (c) 2011-2012 Obeo. * 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: * Obeo - initial API and implementation * */ package org.obeonetwork.dsl.togaf.contentfwk.contentfwk; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Strategic Architecture</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.obeonetwork.dsl.togaf.contentfwk.contentfwk.StrategicArchitecture#getCapabilities <em>Capabilities</em>}</li> * <li>{@link org.obeonetwork.dsl.togaf.contentfwk.contentfwk.StrategicArchitecture#getStrategicElements <em>Strategic Elements</em>}</li> * </ul> * </p> * * @see org.obeonetwork.dsl.togaf.contentfwk.contentfwk.ContentfwkPackage#getStrategicArchitecture() * @model * @generated */ public interface StrategicArchitecture extends Architecture { /** * Returns the value of the '<em><b>Capabilities</b></em>' containment reference list. * The list contents are of type {@link org.obeonetwork.dsl.togaf.contentfwk.contentfwk.Capability}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Capabilities</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>Capabilities</em>' containment reference list. * @see org.obeonetwork.dsl.togaf.contentfwk.contentfwk.ContentfwkPackage#getStrategicArchitecture_Capabilities() * @model containment="true" * @generated */ EList<Capability> getCapabilities(); /** * Returns the value of the '<em><b>Strategic Elements</b></em>' containment reference list. * The list contents are of type {@link org.obeonetwork.dsl.togaf.contentfwk.contentfwk.StrategicElement}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Strategic Elements</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>Strategic Elements</em>' containment reference list. * @see org.obeonetwork.dsl.togaf.contentfwk.contentfwk.ContentfwkPackage#getStrategicArchitecture_StrategicElements() * @model containment="true" * @generated */ EList<StrategicElement> getStrategicElements(); } // StrategicArchitecture