Skip to content

Package: Librarian

Librarian

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: *******************************************************************************/
14: package org.eclipse.emf.ecp.view.validation.test.model;
15:
16: import java.util.Map;
17:
18: import org.eclipse.emf.common.util.DiagnosticChain;
19: import org.eclipse.emf.ecore.EObject;
20:
21: /**
22: * <!-- begin-user-doc -->
23: * A representation of the model object '<em><b>Librarian</b></em>'.
24: * <!-- end-user-doc -->
25: *
26: * <p>
27: * The following features are supported:
28: * </p>
29: * <ul>
30: * <li>{@link org.eclipse.emf.ecp.view.validation.test.model.Librarian#getName <em>Name</em>}</li>
31: * </ul>
32: *
33: * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getLibrarian()
34: * @model
35: * @generated
36: */
37: public interface Librarian extends EObject {
38:         /**
39:          * Returns the value of the '<em><b>Name</b></em>' attribute.
40:          * <!-- begin-user-doc -->
41:          * <p>
42:          * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description here...
43:          * </p>
44:          * <!-- end-user-doc -->
45:          *
46:          * @return the value of the '<em>Name</em>' attribute.
47:          * @see #setName(String)
48:          * @see org.eclipse.emf.ecp.view.validation.test.model.TestPackage#getLibrarian_Name()
49:          * @model
50:          * @generated
51:          */
52:         String getName();
53:
54:         /**
55:          * Sets the value of the '{@link org.eclipse.emf.ecp.view.validation.test.model.Librarian#getName <em>Name</em>}'
56:          * attribute.
57:          * <!-- begin-user-doc -->
58:          * <!-- end-user-doc -->
59:          *
60:          * @param value the new value of the '<em>Name</em>' attribute.
61:          * @see #getName()
62:          * @generated
63:          */
64:         void setName(String value);
65:
66:         /**
67:          * <!-- begin-user-doc -->
68:          * <!-- end-user-doc -->
69:          *
70:          * @model
71:          * @generated
72:          */
73:         boolean validate(DiagnosticChain diagnostic, Map<Object, Object> context);
74:
75: } // Librarian