blob: d3d5d4bc378788e2ff69ff8d42703a90276498a4 [file] [log] [blame]
Linda Chan8d6dbd22010-10-15 05:41:40 +00001/**
2 *************************************************************************
3 * Copyright (c) 2010 Actuate Corporation.
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Actuate Corporation - initial API and implementation
11 *
12 *************************************************************************
13 *
14 * $Id$
15 */
16package org.eclipse.datatools.connectivity.oda.design;
17
18import org.eclipse.emf.common.util.EList;
19
20import org.eclipse.emf.ecore.EObject;
21
22/**
23 * <!-- begin-user-doc -->
24 * A representation of the model object '<em><b>Data Element Identifiers</b></em>'.
25 * <!-- end-user-doc -->
26 *
27 * <!-- begin-model-doc -->
28 * A collection of data element identifiers.
29 * <!-- end-model-doc -->
30 *
31 * <p>
32 * The following features are supported:
33 * <ul>
34 * <li>{@link org.eclipse.datatools.connectivity.oda.design.DataElementIdentifiers#getIdentifiers <em>Identifiers</em>}</li>
35 * </ul>
36 * </p>
37 *
38 * @see org.eclipse.datatools.connectivity.oda.design.DesignPackage#getDataElementIdentifiers()
39 * @model extendedMetaData="name='DataElementIdentifiers' kind='elementOnly'"
40 * @generated
41 * @since 3.3.2
42 */
43public interface DataElementIdentifiers extends EObject
44{
45 /**
46 * <!-- begin-user-doc -->
47 * <!-- end-user-doc -->
48 * @generated
49 */
50 String copyright = "Copyright (c) 2010 Actuate Corporation"; //$NON-NLS-1$
51
52 /**
53 * Returns the value of the '<em><b>Identifiers</b></em>' containment reference list.
54 * The list contents are of type {@link org.eclipse.datatools.connectivity.oda.design.DataElementIdentifier}.
55 * <!-- begin-user-doc -->
56 * <p>
57 * If the meaning of the '<em>Identifiers</em>' containment reference list isn't clear,
58 * there really should be more of a description here...
59 * </p>
60 * <!-- end-user-doc -->
61 * @return the value of the '<em>Identifiers</em>' containment reference list.
62 * @see org.eclipse.datatools.connectivity.oda.design.DesignPackage#getDataElementIdentifiers_Identifiers()
63 * @model containment="true" required="true"
64 * extendedMetaData="kind='element' name='identifiers' namespace='##targetNamespace'"
65 * @generated
66 */
67 EList<DataElementIdentifier> getIdentifiers();
68
69} // DataElementIdentifiers