Skip to content

Package: VAnnotationPackage

VAnnotationPackage

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 3
100%
M: 0 C: 1
100%

Coverage

1: /**
2: * Copyright (c) 2011-2015 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.emfforms.spi.view.annotation.model;
15:
16: import org.eclipse.emf.ecore.EAttribute;
17: import org.eclipse.emf.ecore.EClass;
18: import org.eclipse.emf.ecore.EPackage;
19: import org.eclipse.emf.ecp.view.spi.model.VViewPackage;
20:
21: /**
22: * <!-- begin-user-doc -->
23: * The <b>Package</b> for the model.
24: * It contains accessors for the meta objects to represent
25: * <ul>
26: * <li>each class,</li>
27: * <li>each feature of each class,</li>
28: * <li>each enum,</li>
29: * <li>and each data type</li>
30: * </ul>
31: * <!-- end-user-doc -->
32: *
33: * @see org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotationFactory
34: * @model kind="package"
35: * @generated
36: */
37: public interface VAnnotationPackage extends EPackage {
38:         /**
39:          * The package name.
40:          * <!-- begin-user-doc -->
41:          * <!-- end-user-doc -->
42:          *
43:          * @generated
44:          */
45:         String eNAME = "annotation"; //$NON-NLS-1$
46:
47:         /**
48:          * The package namespace URI.
49:          * <!-- begin-user-doc -->
50:          * <!-- end-user-doc -->
51:          *
52:          * @generated
53:          */
54:         String eNS_URI = "http://org/eclipse/emf/emfforms/view/annotation/model"; //$NON-NLS-1$
55:
56:         /**
57:          * The package namespace name.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @generated
62:          */
63:         String eNS_PREFIX = "org.eclipse.emfforms.view.annotation.model"; //$NON-NLS-1$
64:
65:         /**
66:          * The singleton instance of the package.
67:          * <!-- begin-user-doc -->
68:          * <!-- end-user-doc -->
69:          *
70:          * @generated
71:          */
72:         VAnnotationPackage eINSTANCE = org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationPackageImpl
73:                 .init();
74:
75:         /**
76:          * The meta object id for the '{@link org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationImpl
77:          * <em>Annotation</em>}' class.
78:          * <!-- begin-user-doc -->
79:          * <!-- end-user-doc -->
80:          *
81:          * @see org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationImpl
82:          * @see org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationPackageImpl#getAnnotation()
83:          * @generated
84:          */
85:         int ANNOTATION = 0;
86:
87:         /**
88:          * The feature id for the '<em><b>Key</b></em>' attribute.
89:          * <!-- begin-user-doc -->
90:          * <!-- end-user-doc -->
91:          *
92:          * @generated
93:          * @ordered
94:          */
95:         int ANNOTATION__KEY = VViewPackage.ATTACHMENT_FEATURE_COUNT + 0;
96:
97:         /**
98:          * The feature id for the '<em><b>Value</b></em>' attribute.
99:          * <!-- begin-user-doc -->
100:          * <!-- end-user-doc -->
101:          *
102:          * @generated
103:          * @ordered
104:          */
105:         int ANNOTATION__VALUE = VViewPackage.ATTACHMENT_FEATURE_COUNT + 1;
106:
107:         /**
108:          * The number of structural features of the '<em>Annotation</em>' class.
109:          * <!-- begin-user-doc -->
110:          * <!-- end-user-doc -->
111:          *
112:          * @generated
113:          * @ordered
114:          */
115:         int ANNOTATION_FEATURE_COUNT = VViewPackage.ATTACHMENT_FEATURE_COUNT + 2;
116:
117:         /**
118:          * Returns the meta object for class '{@link org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotation
119:          * <em>Annotation</em>}'.
120:          * <!-- begin-user-doc -->
121:          * <!-- end-user-doc -->
122:          *
123:          * @return the meta object for class '<em>Annotation</em>'.
124:          * @see org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotation
125:          * @generated
126:          */
127:         EClass getAnnotation();
128:
129:         /**
130:          * Returns the meta object for the attribute '
131:          * {@link org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotation#getKey <em>Key</em>}'.
132:          * <!-- begin-user-doc -->
133:          * <!-- end-user-doc -->
134:          *
135:          * @return the meta object for the attribute '<em>Key</em>'.
136:          * @see org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotation#getKey()
137:          * @see #getAnnotation()
138:          * @generated
139:          */
140:         EAttribute getAnnotation_Key();
141:
142:         /**
143:          * Returns the meta object for the attribute '
144:          * {@link org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotation#getValue <em>Value</em>}'.
145:          * <!-- begin-user-doc -->
146:          * <!-- end-user-doc -->
147:          *
148:          * @return the meta object for the attribute '<em>Value</em>'.
149:          * @see org.eclipse.emf.emfforms.spi.view.annotation.model.VAnnotation#getValue()
150:          * @see #getAnnotation()
151:          * @generated
152:          */
153:         EAttribute getAnnotation_Value();
154:
155:         /**
156:          * Returns the factory that creates the instances of the model.
157:          * <!-- begin-user-doc -->
158:          * <!-- end-user-doc -->
159:          *
160:          * @return the factory that creates the instances of the model.
161:          * @generated
162:          */
163:         VAnnotationFactory getAnnotationFactory();
164:
165:         /**
166:          * <!-- begin-user-doc -->
167:          * Defines literals for the meta objects that represent
168:          * <ul>
169:          * <li>each class,</li>
170:          * <li>each feature of each class,</li>
171:          * <li>each enum,</li>
172:          * <li>and each data type</li>
173:          * </ul>
174:          * <!-- end-user-doc -->
175:          *
176:          * @generated
177:          */
178:         interface Literals {
179:                 /**
180:                  * The meta object literal for the '
181:                  * {@link org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationImpl <em>Annotation</em>}' class.
182:                  * <!-- begin-user-doc -->
183:                  * <!-- end-user-doc -->
184:                  *
185:                  * @see org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationImpl
186:                  * @see org.eclipse.emf.emfforms.spi.view.annotation.model.impl.VAnnotationPackageImpl#getAnnotation()
187:                  * @generated
188:                  */
189:                 EClass ANNOTATION = eINSTANCE.getAnnotation();
190:
191:                 /**
192:                  * The meta object literal for the '<em><b>Key</b></em>' attribute feature.
193:                  * <!-- begin-user-doc -->
194:                  * <!-- end-user-doc -->
195:                  *
196:                  * @generated
197:                  */
198:                 EAttribute ANNOTATION__KEY = eINSTANCE.getAnnotation_Key();
199:
200:                 /**
201:                  * The meta object literal for the '<em><b>Value</b></em>' attribute feature.
202:                  * <!-- begin-user-doc -->
203:                  * <!-- end-user-doc -->
204:                  *
205:                  * @generated
206:                  */
207:                 EAttribute ANNOTATION__VALUE = eINSTANCE.getAnnotation_Value();
208:
209:         }
210:
211: } // VAnnotationPackage