summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.iconset-model/src/org/genivi/iconset/IconsetPackage.java
blob: 4e74c3bfdcafaacc81edeb46a6976d5d58976568 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
/**
 * 
 * Copyright (C) 2013 TomTom International B.V.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 * 
 */
package org.genivi.iconset;

import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EEnum;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.emf.ecore.EReference;

/**
 * <!-- begin-user-doc -->
 * The <b>Package</b> for the model.
 * It contains accessors for the meta objects to represent
 * <ul>
 *   <li>each class,</li>
 *   <li>each feature of each class,</li>
 *   <li>each enum,</li>
 *   <li>and each data type</li>
 * </ul>
 * <!-- end-user-doc -->
 * @see org.genivi.iconset.IconsetFactory
 * @model kind="package"
 *        annotation="GenModel documentation='Copyright (C) 2013 TomTom International B.V.\r\n\r\nThis Source Code Form is subject to the terms of the Mozilla Public\r\nLicense, v. 2.0. If a copy of the MPL was not distributed with this\r\nfile, You can obtain one at http://mozilla.org/MPL/2.0/.'"
 * @generated
 */
public interface IconsetPackage extends EPackage {
  /**
	 * The package name.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  String eNAME = "iconset";

  /**
	 * The package namespace URI.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  String eNS_URI = "http://org.genivi.iconset";

  /**
	 * The package namespace name.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  String eNS_PREFIX = "iconset";

  /**
	 * The singleton instance of the package.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  IconsetPackage eINSTANCE = org.genivi.iconset.impl.IconsetPackageImpl.init();

  /**
	 * The meta object id for the '{@link org.genivi.iconset.impl.IconSetImpl <em>Icon Set</em>}' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.impl.IconSetImpl
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconSet()
	 * @generated
	 */
  int ICON_SET = 0;

  /**
	 * The feature id for the '<em><b>Icon Set Id</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__ICON_SET_ID = 0;

  /**
	 * The feature id for the '<em><b>Color Type</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__COLOR_TYPE = 1;

  /**
	 * The feature id for the '<em><b>Dimension</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__DIMENSION = 2;

  /**
	 * The feature id for the '<em><b>Size</b></em>' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__SIZE = 3;

  /**
	 * The feature id for the '<em><b>Day Time Icon</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__DAY_TIME_ICON = 4;

  /**
	 * The feature id for the '<em><b>Theme Id</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__THEME_ID = 5;

  /**
	 * The feature id for the '<em><b>Medium Type</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__MEDIUM_TYPE = 6;

  /**
	 * The feature id for the '<em><b>Icon Descriptors</b></em>' containment reference list.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET__ICON_DESCRIPTORS = 7;

  /**
	 * The number of structural features of the '<em>Icon Set</em>' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SET_FEATURE_COUNT = 8;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.impl.IconSizeImpl <em>Icon Size</em>}' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.impl.IconSizeImpl
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconSize()
	 * @generated
	 */
  int ICON_SIZE = 1;

  /**
	 * The feature id for the '<em><b>Width</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SIZE__WIDTH = 0;

  /**
	 * The feature id for the '<em><b>Height</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SIZE__HEIGHT = 1;

  /**
	 * The feature id for the '<em><b>Dpi</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SIZE__DPI = 2;

  /**
	 * The number of structural features of the '<em>Icon Size</em>' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_SIZE_FEATURE_COUNT = 3;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.impl.IconDescriptorImpl <em>Icon Descriptor</em>}' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.impl.IconDescriptorImpl
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconDescriptor()
	 * @generated
	 */
  int ICON_DESCRIPTOR = 2;

  /**
	 * The feature id for the '<em><b>Url</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DESCRIPTOR__URL = 0;

  /**
	 * The feature id for the '<em><b>Icon Id</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DESCRIPTOR__ICON_ID = 1;

  /**
	 * The number of structural features of the '<em>Icon Descriptor</em>' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DESCRIPTOR_FEATURE_COUNT = 2;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.impl.IconDataImpl <em>Icon Data</em>}' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.impl.IconDataImpl
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconData()
	 * @generated
	 */
  int ICON_DATA = 3;

  /**
	 * The feature id for the '<em><b>Data</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DATA__DATA = 0;

  /**
	 * The number of structural features of the '<em>Icon Data</em>' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DATA_FEATURE_COUNT = 1;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.impl.IconInfoImpl <em>Icon Info</em>}' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.impl.IconInfoImpl
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconInfo()
	 * @generated
	 */
  int ICON_INFO = 4;

  /**
	 * The feature id for the '<em><b>Icon Set Id</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_INFO__ICON_SET_ID = 0;

  /**
	 * The feature id for the '<em><b>Icon Id</b></em>' attribute.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_INFO__ICON_ID = 1;

  /**
	 * The number of structural features of the '<em>Icon Info</em>' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_INFO_FEATURE_COUNT = 2;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.impl.IconDefinitionImpl <em>Icon Definition</em>}' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.impl.IconDefinitionImpl
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconDefinition()
	 * @generated
	 */
  int ICON_DEFINITION = 5;

  /**
	 * The feature id for the '<em><b>Icon Info</b></em>' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DEFINITION__ICON_INFO = 0;

  /**
	 * The feature id for the '<em><b>Icon Data</b></em>' containment reference.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DEFINITION__ICON_DATA = 1;

  /**
	 * The number of structural features of the '<em>Icon Definition</em>' class.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 * @ordered
	 */
  int ICON_DEFINITION_FEATURE_COUNT = 2;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.ColorType <em>Color Type</em>}' enum.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.ColorType
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getColorType()
	 * @generated
	 */
  int COLOR_TYPE = 6;

  /**
	 * The meta object id for the '{@link org.genivi.iconset.IconDimension <em>Icon Dimension</em>}' enum.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see org.genivi.iconset.IconDimension
	 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconDimension()
	 * @generated
	 */
  int ICON_DIMENSION = 7;


  /**
	 * Returns the meta object for class '{@link org.genivi.iconset.IconSet <em>Icon Set</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for class '<em>Icon Set</em>'.
	 * @see org.genivi.iconset.IconSet
	 * @generated
	 */
  EClass getIconSet();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSet#getIconSetId <em>Icon Set Id</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Icon Set Id</em>'.
	 * @see org.genivi.iconset.IconSet#getIconSetId()
	 * @see #getIconSet()
	 * @generated
	 */
  EAttribute getIconSet_IconSetId();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSet#getColorType <em>Color Type</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Color Type</em>'.
	 * @see org.genivi.iconset.IconSet#getColorType()
	 * @see #getIconSet()
	 * @generated
	 */
  EAttribute getIconSet_ColorType();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSet#getDimension <em>Dimension</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Dimension</em>'.
	 * @see org.genivi.iconset.IconSet#getDimension()
	 * @see #getIconSet()
	 * @generated
	 */
  EAttribute getIconSet_Dimension();

  /**
	 * Returns the meta object for the containment reference '{@link org.genivi.iconset.IconSet#getSize <em>Size</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the containment reference '<em>Size</em>'.
	 * @see org.genivi.iconset.IconSet#getSize()
	 * @see #getIconSet()
	 * @generated
	 */
  EReference getIconSet_Size();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSet#isDayTimeIcon <em>Day Time Icon</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Day Time Icon</em>'.
	 * @see org.genivi.iconset.IconSet#isDayTimeIcon()
	 * @see #getIconSet()
	 * @generated
	 */
  EAttribute getIconSet_DayTimeIcon();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSet#getThemeId <em>Theme Id</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Theme Id</em>'.
	 * @see org.genivi.iconset.IconSet#getThemeId()
	 * @see #getIconSet()
	 * @generated
	 */
  EAttribute getIconSet_ThemeId();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSet#getMediumType <em>Medium Type</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Medium Type</em>'.
	 * @see org.genivi.iconset.IconSet#getMediumType()
	 * @see #getIconSet()
	 * @generated
	 */
  EAttribute getIconSet_MediumType();

  /**
	 * Returns the meta object for the containment reference list '{@link org.genivi.iconset.IconSet#getIconDescriptors <em>Icon Descriptors</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the containment reference list '<em>Icon Descriptors</em>'.
	 * @see org.genivi.iconset.IconSet#getIconDescriptors()
	 * @see #getIconSet()
	 * @generated
	 */
  EReference getIconSet_IconDescriptors();

  /**
	 * Returns the meta object for class '{@link org.genivi.iconset.IconSize <em>Icon Size</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for class '<em>Icon Size</em>'.
	 * @see org.genivi.iconset.IconSize
	 * @generated
	 */
  EClass getIconSize();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSize#getWidth <em>Width</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Width</em>'.
	 * @see org.genivi.iconset.IconSize#getWidth()
	 * @see #getIconSize()
	 * @generated
	 */
  EAttribute getIconSize_Width();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSize#getHeight <em>Height</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Height</em>'.
	 * @see org.genivi.iconset.IconSize#getHeight()
	 * @see #getIconSize()
	 * @generated
	 */
  EAttribute getIconSize_Height();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconSize#getDpi <em>Dpi</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Dpi</em>'.
	 * @see org.genivi.iconset.IconSize#getDpi()
	 * @see #getIconSize()
	 * @generated
	 */
  EAttribute getIconSize_Dpi();

  /**
	 * Returns the meta object for class '{@link org.genivi.iconset.IconDescriptor <em>Icon Descriptor</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for class '<em>Icon Descriptor</em>'.
	 * @see org.genivi.iconset.IconDescriptor
	 * @generated
	 */
  EClass getIconDescriptor();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconDescriptor#getUrl <em>Url</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Url</em>'.
	 * @see org.genivi.iconset.IconDescriptor#getUrl()
	 * @see #getIconDescriptor()
	 * @generated
	 */
  EAttribute getIconDescriptor_Url();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconDescriptor#getIconId <em>Icon Id</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Icon Id</em>'.
	 * @see org.genivi.iconset.IconDescriptor#getIconId()
	 * @see #getIconDescriptor()
	 * @generated
	 */
  EAttribute getIconDescriptor_IconId();

  /**
	 * Returns the meta object for class '{@link org.genivi.iconset.IconData <em>Icon Data</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for class '<em>Icon Data</em>'.
	 * @see org.genivi.iconset.IconData
	 * @generated
	 */
  EClass getIconData();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconData#getData <em>Data</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Data</em>'.
	 * @see org.genivi.iconset.IconData#getData()
	 * @see #getIconData()
	 * @generated
	 */
  EAttribute getIconData_Data();

  /**
	 * Returns the meta object for class '{@link org.genivi.iconset.IconInfo <em>Icon Info</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for class '<em>Icon Info</em>'.
	 * @see org.genivi.iconset.IconInfo
	 * @generated
	 */
  EClass getIconInfo();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconInfo#getIconSetId <em>Icon Set Id</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Icon Set Id</em>'.
	 * @see org.genivi.iconset.IconInfo#getIconSetId()
	 * @see #getIconInfo()
	 * @generated
	 */
  EAttribute getIconInfo_IconSetId();

  /**
	 * Returns the meta object for the attribute '{@link org.genivi.iconset.IconInfo#getIconId <em>Icon Id</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the attribute '<em>Icon Id</em>'.
	 * @see org.genivi.iconset.IconInfo#getIconId()
	 * @see #getIconInfo()
	 * @generated
	 */
  EAttribute getIconInfo_IconId();

  /**
	 * Returns the meta object for class '{@link org.genivi.iconset.IconDefinition <em>Icon Definition</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for class '<em>Icon Definition</em>'.
	 * @see org.genivi.iconset.IconDefinition
	 * @generated
	 */
  EClass getIconDefinition();

  /**
	 * Returns the meta object for the containment reference '{@link org.genivi.iconset.IconDefinition#getIconInfo <em>Icon Info</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the containment reference '<em>Icon Info</em>'.
	 * @see org.genivi.iconset.IconDefinition#getIconInfo()
	 * @see #getIconDefinition()
	 * @generated
	 */
  EReference getIconDefinition_IconInfo();

  /**
	 * Returns the meta object for the containment reference '{@link org.genivi.iconset.IconDefinition#getIconData <em>Icon Data</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for the containment reference '<em>Icon Data</em>'.
	 * @see org.genivi.iconset.IconDefinition#getIconData()
	 * @see #getIconDefinition()
	 * @generated
	 */
  EReference getIconDefinition_IconData();

  /**
	 * Returns the meta object for enum '{@link org.genivi.iconset.ColorType <em>Color Type</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for enum '<em>Color Type</em>'.
	 * @see org.genivi.iconset.ColorType
	 * @generated
	 */
  EEnum getColorType();

  /**
	 * Returns the meta object for enum '{@link org.genivi.iconset.IconDimension <em>Icon Dimension</em>}'.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the meta object for enum '<em>Icon Dimension</em>'.
	 * @see org.genivi.iconset.IconDimension
	 * @generated
	 */
  EEnum getIconDimension();

  /**
	 * Returns the factory that creates the instances of the model.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @return the factory that creates the instances of the model.
	 * @generated
	 */
  IconsetFactory getIconsetFactory();

  /**
	 * <!-- begin-user-doc -->
   * Defines literals for the meta objects that represent
   * <ul>
   *   <li>each class,</li>
   *   <li>each feature of each class,</li>
   *   <li>each enum,</li>
   *   <li>and each data type</li>
   * </ul>
   * <!-- end-user-doc -->
	 * @generated
	 */
  interface Literals {
    /**
		 * The meta object literal for the '{@link org.genivi.iconset.impl.IconSetImpl <em>Icon Set</em>}' class.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.impl.IconSetImpl
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconSet()
		 * @generated
		 */
    EClass ICON_SET = eINSTANCE.getIconSet();

    /**
		 * The meta object literal for the '<em><b>Icon Set Id</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SET__ICON_SET_ID = eINSTANCE.getIconSet_IconSetId();

    /**
		 * The meta object literal for the '<em><b>Color Type</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SET__COLOR_TYPE = eINSTANCE.getIconSet_ColorType();

    /**
		 * The meta object literal for the '<em><b>Dimension</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SET__DIMENSION = eINSTANCE.getIconSet_Dimension();

    /**
		 * The meta object literal for the '<em><b>Size</b></em>' containment reference feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EReference ICON_SET__SIZE = eINSTANCE.getIconSet_Size();

    /**
		 * The meta object literal for the '<em><b>Day Time Icon</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SET__DAY_TIME_ICON = eINSTANCE.getIconSet_DayTimeIcon();

    /**
		 * The meta object literal for the '<em><b>Theme Id</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SET__THEME_ID = eINSTANCE.getIconSet_ThemeId();

    /**
		 * The meta object literal for the '<em><b>Medium Type</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SET__MEDIUM_TYPE = eINSTANCE.getIconSet_MediumType();

    /**
		 * The meta object literal for the '<em><b>Icon Descriptors</b></em>' containment reference list feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EReference ICON_SET__ICON_DESCRIPTORS = eINSTANCE.getIconSet_IconDescriptors();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.impl.IconSizeImpl <em>Icon Size</em>}' class.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.impl.IconSizeImpl
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconSize()
		 * @generated
		 */
    EClass ICON_SIZE = eINSTANCE.getIconSize();

    /**
		 * The meta object literal for the '<em><b>Width</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SIZE__WIDTH = eINSTANCE.getIconSize_Width();

    /**
		 * The meta object literal for the '<em><b>Height</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SIZE__HEIGHT = eINSTANCE.getIconSize_Height();

    /**
		 * The meta object literal for the '<em><b>Dpi</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_SIZE__DPI = eINSTANCE.getIconSize_Dpi();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.impl.IconDescriptorImpl <em>Icon Descriptor</em>}' class.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.impl.IconDescriptorImpl
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconDescriptor()
		 * @generated
		 */
    EClass ICON_DESCRIPTOR = eINSTANCE.getIconDescriptor();

    /**
		 * The meta object literal for the '<em><b>Url</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_DESCRIPTOR__URL = eINSTANCE.getIconDescriptor_Url();

    /**
		 * The meta object literal for the '<em><b>Icon Id</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_DESCRIPTOR__ICON_ID = eINSTANCE.getIconDescriptor_IconId();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.impl.IconDataImpl <em>Icon Data</em>}' class.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.impl.IconDataImpl
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconData()
		 * @generated
		 */
    EClass ICON_DATA = eINSTANCE.getIconData();

    /**
		 * The meta object literal for the '<em><b>Data</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_DATA__DATA = eINSTANCE.getIconData_Data();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.impl.IconInfoImpl <em>Icon Info</em>}' class.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.impl.IconInfoImpl
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconInfo()
		 * @generated
		 */
    EClass ICON_INFO = eINSTANCE.getIconInfo();

    /**
		 * The meta object literal for the '<em><b>Icon Set Id</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_INFO__ICON_SET_ID = eINSTANCE.getIconInfo_IconSetId();

    /**
		 * The meta object literal for the '<em><b>Icon Id</b></em>' attribute feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EAttribute ICON_INFO__ICON_ID = eINSTANCE.getIconInfo_IconId();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.impl.IconDefinitionImpl <em>Icon Definition</em>}' class.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.impl.IconDefinitionImpl
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconDefinition()
		 * @generated
		 */
    EClass ICON_DEFINITION = eINSTANCE.getIconDefinition();

    /**
		 * The meta object literal for the '<em><b>Icon Info</b></em>' containment reference feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EReference ICON_DEFINITION__ICON_INFO = eINSTANCE.getIconDefinition_IconInfo();

    /**
		 * The meta object literal for the '<em><b>Icon Data</b></em>' containment reference feature.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @generated
		 */
    EReference ICON_DEFINITION__ICON_DATA = eINSTANCE.getIconDefinition_IconData();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.ColorType <em>Color Type</em>}' enum.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.ColorType
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getColorType()
		 * @generated
		 */
    EEnum COLOR_TYPE = eINSTANCE.getColorType();

    /**
		 * The meta object literal for the '{@link org.genivi.iconset.IconDimension <em>Icon Dimension</em>}' enum.
		 * <!-- begin-user-doc -->
     * <!-- end-user-doc -->
		 * @see org.genivi.iconset.IconDimension
		 * @see org.genivi.iconset.impl.IconsetPackageImpl#getIconDimension()
		 * @generated
		 */
    EEnum ICON_DIMENSION = eINSTANCE.getIconDimension();

  }

} //IconsetPackage