Skip to content

Package: Library

Library

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2013 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Eugen Neufeld - initial API and implementation
13: * Johannes Faltermeier
14: *
15: *******************************************************************************/
16: package org.eclipse.emf.ecp.validation.test.test;
17:
18: import org.eclipse.emf.common.util.EList;
19: import org.eclipse.emf.ecore.EObject;
20:
21: /**
22: * <!-- begin-user-doc -->
23: * A representation of the model object '<em><b>Library</b></em>'.
24: * <!-- end-user-doc -->
25: *
26: * <p>
27: * The following features are supported:
28: * <ul>
29: * <li>{@link org.eclipse.emf.ecp.validation.test.test.Library#getName <em>Name</em>}</li>
30: * <li>{@link org.eclipse.emf.ecp.validation.test.test.Library#getWriters <em>Writers</em>}</li>
31: * <li>{@link org.eclipse.emf.ecp.validation.test.test.Library#getBooks <em>Books</em>}</li>
32: * </ul>
33: * </p>
34: *
35: * @see org.eclipse.emf.ecp.validation.test.test.TestPackage#getLibrary()
36: * @model
37: * @generated
38: */
39: public interface Library extends EObject {
40:         /**
41:          * Returns the value of the '<em><b>Name</b></em>' attribute.
42:          * <!-- begin-user-doc -->
43:          * <p>
44:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
45:          * </p>
46:          * <!-- end-user-doc -->
47:          *
48:          * @return the value of the '<em>Name</em>' attribute.
49:          * @see #setName(String)
50:          * @see org.eclipse.emf.ecp.validation.test.test.TestPackage#getLibrary_Name()
51:          * @model
52:          * @generated
53:          */
54:         String getName();
55:
56:         /**
57:          * Sets the value of the '{@link org.eclipse.emf.ecp.validation.test.test.Library#getName <em>Name</em>}' attribute.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @param value the new value of the '<em>Name</em>' attribute.
62:          * @see #getName()
63:          * @generated
64:          */
65:         void setName(String value);
66:
67:         /**
68:          * Returns the value of the '<em><b>Writers</b></em>' containment reference list.
69:          * The list contents are of type {@link org.eclipse.emf.ecp.validation.test.test.Writer}.
70:          * It is bidirectional and its opposite is '{@link org.eclipse.emf.ecp.validation.test.test.Writer#getLibrary
71:          * <em>Library</em>}'.
72:          * <!-- begin-user-doc -->
73:          * <p>
74:          * If the meaning of the '<em>Writers</em>' containment reference list isn't clear, there really should be more of a
75:          * description here...
76:          * </p>
77:          * <!-- end-user-doc -->
78:          *
79:          * @return the value of the '<em>Writers</em>' containment reference list.
80:          * @see org.eclipse.emf.ecp.validation.test.test.TestPackage#getLibrary_Writers()
81:          * @see org.eclipse.emf.ecp.validation.test.test.Writer#getLibrary
82:          * @model opposite="library" containment="true"
83:          * @generated
84:          */
85:         EList<Writer> getWriters();
86:
87:         /**
88:          * Returns the value of the '<em><b>Books</b></em>' containment reference list.
89:          * The list contents are of type {@link org.eclipse.emf.ecp.validation.test.test.Book}.
90:          * <!-- begin-user-doc -->
91:          * <p>
92:          * If the meaning of the '<em>Books</em>' containment reference list isn't clear, there really should be more of a
93:          * description here...
94:          * </p>
95:          * <!-- end-user-doc -->
96:          *
97:          * @return the value of the '<em>Books</em>' containment reference list.
98:          * @see org.eclipse.emf.ecp.validation.test.test.TestPackage#getLibrary_Books()
99:          * @model containment="true"
100:          * @generated
101:          */
102:         EList<Book> getBooks();
103:
104: } // Library