Skip to main content
summaryrefslogtreecommitdiffstats
blob: fc172de455a9938763738d18ef6df814a7682dbf (plain) (blame)
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
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.emf.cdo.internal.common.model.core;

import org.eclipse.emf.cdo.common.model.CDOType;
import org.eclipse.emf.cdo.common.model.core.CDOCorePackage;
import org.eclipse.emf.cdo.internal.common.model.CDOPackageImpl;
import org.eclipse.emf.cdo.internal.common.model.CDOPackageManagerImpl;

/**
 * @author Eike Stepper
 */
public final class CDOCorePackageImpl extends CDOPackageImpl implements CDOCorePackage
{
  private CDOObjectClassImpl cdoObjectClass;

  private CDOType cdoBoolean;

  private CDOType cdoBooleanObject;

  private CDOType cdoByte;

  private CDOType cdoByteObject;

  private CDOType cdoChar;

  private CDOType cdoCharacterObject;

  private CDOType cdoDate;

  private CDOType cdoDouble;

  private CDOType cdoDoubleObject;

  private CDOType cdoFloat;

  private CDOType cdoFloatObject;

  private CDOType cdoInt;

  private CDOType cdoIntegerObject;

  private CDOType cdoLong;

  private CDOType cdoLongObject;

  private CDOType cdoShort;

  private CDOType cdoShortObject;

  private CDOType cdoString;

  private CDOType cdoByteArray;

  private CDOType cdoFeatureMapEntry;

  public CDOCorePackageImpl(CDOPackageManagerImpl packageManager)
  {
    super(packageManager, PACKAGE_URI, NAME, null, false, null, null);
    addClassifier(cdoObjectClass = new CDOObjectClassImpl(this));
  }

  @Override
  public String getEcore()
  {
    return null;
  }

  @Override
  public boolean isSystem()
  {
    return true;
  }

  public CDOObjectClassImpl getCDOObjectClass()
  {
    return cdoObjectClass;
  }

  public CDOType getCDOBoolean()
  {
    return cdoBoolean;
  }

  public CDOType getCDOBooleanObject()
  {
    return cdoBooleanObject;
  }

  public CDOType getCDOByte()
  {
    return cdoByte;
  }

  public CDOType getCDOByteObject()
  {
    return cdoByteObject;
  }

  public CDOType getCDOChar()
  {
    return cdoChar;
  }

  public CDOType getCDOCharacterObject()
  {
    return cdoCharacterObject;
  }

  public CDOType getCDODate()
  {
    return cdoDate;
  }

  public CDOType getCDODouble()
  {
    return cdoDouble;
  }

  public CDOType getCDODoubleObject()
  {
    return cdoDoubleObject;
  }

  public CDOType getCDOFloat()
  {
    return cdoFloat;
  }

  public CDOType getCDOFloatObject()
  {
    return cdoFloatObject;
  }

  public CDOType getCDOInt()
  {
    return cdoInt;
  }

  public CDOType getCDOIntegerObject()
  {
    return cdoIntegerObject;
  }

  public CDOType getCDOLong()
  {
    return cdoLong;
  }

  public CDOType getCDOLongObject()
  {
    return cdoLongObject;
  }

  public CDOType getCDOShort()
  {
    return cdoShort;
  }

  public CDOType getCDOShortObject()
  {
    return cdoShortObject;
  }

  public CDOType getCDOString()
  {
    return cdoString;
  }

  public CDOType getCDOByteArray()
  {
    return cdoByteArray;
  }

  public CDOType getCDOFeatureMapEntry()
  {
    return cdoFeatureMapEntry;
  }
}

Back to the top