imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/model/iContent/IMAGESECTION.java
author haismail <hussein.ismail@nokia.com>
Mon, 25 Jan 2010 12:26:21 +0200
changeset 1 7ff23301fe22
parent 0 61163b28edca
child 11 217e69fc5beb
permissions -rw-r--r--
iMaker plugin updated: Ticket #1188: As a Carbide.c++ user I want to modify my .IMP file using iMaker plugin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     1
/*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     3
* All rights reserved.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     4
* This component and the accompanying materials are made available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     5
* under the terms of "Eclipse Public License v1.0"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     6
* which accompanies this distribution, and is available
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     8
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
     9
* Initial Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    11
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    12
* Contributors:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    13
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    14
* Description:
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    15
*
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    16
*/
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    17
package com.nokia.s60tools.imaker.internal.model.iContent;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    18
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    19
import java.util.Arrays;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
import java.util.Collections;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
import java.util.List;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
import org.eclipse.emf.common.util.Enumerator;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    24
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    25
/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    26
 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    27
 * A representation of the literals of the enumeration '<em><b>IMAGESECTION</b></em>',
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
 * and utility methods for working with them.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
 * @see com.nokia.s60tools.imaker.internal.model.iContent.IContentPackage#getIMAGESECTION()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
 * @model
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
public enum IMAGESECTION implements Enumerator {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
	 * The '<em><b>CORE</b></em>' literal object.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
	 * @see #CORE_VALUE
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
	CORE(0, "CORE", "CORE"),
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
	 * The '<em><b>ROFS2</b></em>' literal object.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
	 * @see #ROFS2_VALUE
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
	ROFS2(1, "ROFS2", "ROFS2"),
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
	 * The '<em><b>ROFS3</b></em>' literal object.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
	 * @see #ROFS3_VALUE
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
	 */
1
7ff23301fe22 iMaker plugin updated:
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
    63
	ROFS3(2, "ROFS3", "ROFS3");
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    64
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    65
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    66
	 * The '<em><b>CORE</b></em>' literal value.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
	 * <p>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
	 * If the meaning of '<em><b>CORE</b></em>' literal object isn't clear,
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
	 * there really should be more of a description here...
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
	 * </p>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
	 * @see #CORE
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
	 * @model
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
	public static final int CORE_VALUE = 0;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
	 * The '<em><b>ROFS2</b></em>' literal value.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
	 * <p>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
	 * If the meaning of '<em><b>ROFS2</b></em>' literal object isn't clear,
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
	 * there really should be more of a description here...
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
	 * </p>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
	 * @see #ROFS2
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
	 * @model
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
	public static final int ROFS2_VALUE = 1;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
	 * The '<em><b>ROFS3</b></em>' literal value.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
	 * <p>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
	 * If the meaning of '<em><b>ROFS3</b></em>' literal object isn't clear,
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
	 * there really should be more of a description here...
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
	 * </p>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
	 * @see #ROFS3
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
	 * @model
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
	public static final int ROFS3_VALUE = 2;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
	 * An array of all the '<em><b>IMAGESECTION</b></em>' enumerators.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   115
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   116
	private static final IMAGESECTION[] VALUES_ARRAY =
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   117
		new IMAGESECTION[] {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   118
			CORE,
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   119
			ROFS2,
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   120
			ROFS3,
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   121
		};
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   122
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   123
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   124
	 * A public read-only list of all the '<em><b>IMAGESECTION</b></em>' enumerators.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   125
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   126
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   127
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   128
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   129
	public static final List<IMAGESECTION> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   130
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   131
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   132
	 * Returns the '<em><b>IMAGESECTION</b></em>' literal with the specified literal value.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   133
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   134
	 * <!-- end-user-doc -->
1
7ff23301fe22 iMaker plugin updated:
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   135
	 * @generated NOT
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   136
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   137
	public static IMAGESECTION get(String literal) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   138
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   139
			IMAGESECTION result = VALUES_ARRAY[i];
1
7ff23301fe22 iMaker plugin updated:
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   140
			if (result.toString().equalsIgnoreCase(literal)) {
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   141
				return result;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   142
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   143
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   144
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   145
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   146
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   147
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   148
	 * Returns the '<em><b>IMAGESECTION</b></em>' literal with the specified name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   149
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   150
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   151
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   152
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   153
	public static IMAGESECTION getByName(String name) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   154
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   155
			IMAGESECTION result = VALUES_ARRAY[i];
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   156
			if (result.getName().equals(name)) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   157
				return result;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   158
			}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   159
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   160
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   161
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   162
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   163
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   164
	 * Returns the '<em><b>IMAGESECTION</b></em>' literal with the specified integer value.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   165
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   166
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   167
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   168
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   169
	public static IMAGESECTION get(int value) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   170
		switch (value) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   171
			case CORE_VALUE: return CORE;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   172
			case ROFS2_VALUE: return ROFS2;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   173
			case ROFS3_VALUE: return ROFS3;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   174
		}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   175
		return null;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   176
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   177
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   178
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   179
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   180
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   181
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   182
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   183
	private final int value;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   184
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   185
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   186
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   187
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   188
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   189
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   190
	private final String name;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   191
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   192
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   193
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   194
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   195
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   196
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   197
	private final String literal;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   198
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   199
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   200
	 * Only this class can construct instances.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   201
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   202
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   203
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   204
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   205
	private IMAGESECTION(int value, String name, String literal) {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   206
		this.value = value;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   207
		this.name = name;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   208
		this.literal = literal;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   209
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   210
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   211
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   212
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   213
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   214
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   215
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   216
	public int getValue() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   217
	  return value;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   218
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   219
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   220
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   221
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   222
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   223
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   224
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   225
	public String getName() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   226
	  return name;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   227
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   228
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   229
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   230
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   231
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   232
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   233
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   234
	public String getLiteral() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   235
	  return literal;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   236
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   237
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   238
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   239
	 * Returns the literal value of the enumerator, which is its string representation.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   240
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   241
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   242
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   243
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   244
	@Override
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   245
	public String toString() {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   246
		return literal;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   247
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   248
	
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   249
} //IMAGESECTION