imakerplugin/com.nokia.s60tools.imaker/src/com/nokia/s60tools/imaker/internal/model/iContent/IContentPackage.java
author haismail <hussein.ismail@nokia.com>
Wed, 28 Apr 2010 13:50:48 +0300
changeset 11 217e69fc5beb
parent 0 61163b28edca
permissions -rw-r--r--
iMaker 3.1.0
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 org.eclipse.emf.ecore.EAttribute;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    20
import org.eclipse.emf.ecore.EClass;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    21
import org.eclipse.emf.ecore.EEnum;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    22
import org.eclipse.emf.ecore.EPackage;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    23
import org.eclipse.emf.ecore.EReference;
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
 * The <b>Package</b> for the model.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    28
 * It contains accessors for the meta objects to represent
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    29
 * <ul>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    30
 *   <li>each class,</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    31
 *   <li>each feature of each class,</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    32
 *   <li>each enum,</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    33
 *   <li>and each data type</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    34
 * </ul>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    35
 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    36
 * @see com.nokia.s60tools.imaker.internal.model.iContent.IContentFactory
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    37
 * @model kind="package"
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    38
 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    39
 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    40
public interface IContentPackage extends EPackage {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    41
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    42
	 * The package name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    43
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    44
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    45
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    46
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    47
	String eNAME = "iContent";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    48
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    49
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    50
	 * The package namespace URI.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    51
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    52
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    53
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    54
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    55
	String eNS_URI = "http://www.nokia.com";
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    56
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    57
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    58
	 * The package namespace name.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    59
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    60
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    61
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    62
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    63
	String eNS_PREFIX = "ic";
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 singleton instance of the package.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    67
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    68
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    69
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    70
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    71
	IContentPackage eINSTANCE = com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl.init();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    72
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    73
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    74
	 * The meta object id for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.impl.ImageContentImpl <em>Image Content</em>}' class.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    75
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    76
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    77
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.ImageContentImpl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    78
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getImageContent()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    79
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    80
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    81
	int IMAGE_CONTENT = 0;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    82
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    83
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    84
	 * The feature id for the '<em><b>Entries</b></em>' containment reference list.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    85
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    86
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    87
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    88
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    89
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    90
	int IMAGE_CONTENT__ENTRIES = 0;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    91
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    92
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    93
	 * The number of structural features of the '<em>Image Content</em>' class.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    94
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    95
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    96
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    97
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    98
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
    99
	int IMAGE_CONTENT_FEATURE_COUNT = 1;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   100
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   101
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   102
	 * The meta object id for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.impl.IbyEntryImpl <em>Iby Entry</em>}' class.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   103
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   104
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   105
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IbyEntryImpl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   106
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   107
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   108
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   109
	int IBY_ENTRY = 1;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   110
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   111
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   112
	 * The feature id for the '<em><b>File</b></em>' attribute.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   113
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   114
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   115
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   116
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   117
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   118
	int IBY_ENTRY__FILE = 0;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   119
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   120
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   121
	 * The feature id for the '<em><b>Target</b></em>' attribute.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   122
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   123
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   124
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   125
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   126
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   127
	int IBY_ENTRY__TARGET = 1;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   128
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   129
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   130
	 * The feature id for the '<em><b>Location</b></em>' attribute.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   131
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   132
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   133
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   134
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   135
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   136
	int IBY_ENTRY__LOCATION = 2;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   137
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   138
	/**
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   139
	 * The feature id for the '<em><b>Action</b></em>' attribute.
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   140
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   141
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   142
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   143
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   144
	 */
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   145
	int IBY_ENTRY__ACTION = 3;
0
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
	 * The feature id for the '<em><b>Enabled</b></em>' attribute.
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
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   153
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   154
	int IBY_ENTRY__ENABLED = 4;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   155
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   156
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   157
	 * The feature id for the '<em><b>Status Message</b></em>' attribute.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   158
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   159
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   160
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   161
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   162
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   163
	int IBY_ENTRY__STATUS_MESSAGE = 5;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   164
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   165
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   166
	 * The number of structural features of the '<em>Iby Entry</em>' class.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   167
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   168
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   169
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   170
	 * @ordered
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   171
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   172
	int IBY_ENTRY_FEATURE_COUNT = 6;
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   173
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   174
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   175
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   176
	 * The meta object id for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.IMAGESECTION <em>IMAGESECTION</em>}' enum.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   177
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   178
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   179
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IMAGESECTION
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   180
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getIMAGESECTION()
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
	int IMAGESECTION = 2;
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
	/**
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   187
	 * The meta object id for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.ACTION <em>ACTION</em>}' enum.
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   188
	 * <!-- begin-user-doc -->
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   189
	 * <!-- end-user-doc -->
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   190
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.ACTION
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   191
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getACTION()
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   192
	 * @generated
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   193
	 */
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   194
	int ACTION = 3;
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   195
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   196
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   197
	/**
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   198
	 * Returns the meta object for class '{@link com.nokia.s60tools.imaker.internal.model.iContent.ImageContent <em>Image Content</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   199
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   200
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   201
	 * @return the meta object for class '<em>Image Content</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   202
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.ImageContent
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
	EClass getImageContent();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   206
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   207
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   208
	 * Returns the meta object for the containment reference list '{@link com.nokia.s60tools.imaker.internal.model.iContent.ImageContent#getEntries <em>Entries</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   209
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   210
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   211
	 * @return the meta object for the containment reference list '<em>Entries</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   212
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.ImageContent#getEntries()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   213
	 * @see #getImageContent()
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
	EReference getImageContent_Entries();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   217
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   218
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   219
	 * Returns the meta object for class '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry <em>Iby Entry</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   220
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   221
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   222
	 * @return the meta object for class '<em>Iby Entry</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   223
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   224
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   225
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   226
	EClass getIbyEntry();
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
	 * Returns the meta object for the attribute '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getFile <em>File</em>}'.
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
	 * @return the meta object for the attribute '<em>File</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   233
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getFile()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   234
	 * @see #getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   235
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   236
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   237
	EAttribute getIbyEntry_File();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   238
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   239
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   240
	 * Returns the meta object for the attribute '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getTarget <em>Target</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   241
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   242
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   243
	 * @return the meta object for the attribute '<em>Target</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   244
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getTarget()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   245
	 * @see #getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   246
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   247
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   248
	EAttribute getIbyEntry_Target();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   249
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   250
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   251
	 * Returns the meta object for the attribute '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getLocation <em>Location</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   252
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   253
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   254
	 * @return the meta object for the attribute '<em>Location</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   255
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getLocation()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   256
	 * @see #getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   257
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   258
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   259
	EAttribute getIbyEntry_Location();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   260
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   261
	/**
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   262
	 * Returns the meta object for the attribute '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getAction <em>Action</em>}'.
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   263
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   264
	 * <!-- end-user-doc -->
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   265
	 * @return the meta object for the attribute '<em>Action</em>'.
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   266
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getAction()
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   267
	 * @see #getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   268
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   269
	 */
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   270
	EAttribute getIbyEntry_Action();
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   271
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   272
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   273
	 * Returns the meta object for the attribute '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#isEnabled <em>Enabled</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   274
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   275
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   276
	 * @return the meta object for the attribute '<em>Enabled</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   277
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#isEnabled()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   278
	 * @see #getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   279
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   280
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   281
	EAttribute getIbyEntry_Enabled();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   282
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   283
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   284
	 * Returns the meta object for the attribute '{@link com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getStatusMessage <em>Status Message</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   285
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   286
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   287
	 * @return the meta object for the attribute '<em>Status Message</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   288
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IbyEntry#getStatusMessage()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   289
	 * @see #getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   290
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   291
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   292
	EAttribute getIbyEntry_StatusMessage();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   293
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   294
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   295
	 * Returns the meta object for enum '{@link com.nokia.s60tools.imaker.internal.model.iContent.IMAGESECTION <em>IMAGESECTION</em>}'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   296
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   297
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   298
	 * @return the meta object for enum '<em>IMAGESECTION</em>'.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   299
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.IMAGESECTION
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   300
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   301
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   302
	EEnum getIMAGESECTION();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   303
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   304
	/**
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   305
	 * Returns the meta object for enum '{@link com.nokia.s60tools.imaker.internal.model.iContent.ACTION <em>ACTION</em>}'.
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   306
	 * <!-- begin-user-doc -->
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   307
	 * <!-- end-user-doc -->
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   308
	 * @return the meta object for enum '<em>ACTION</em>'.
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   309
	 * @see com.nokia.s60tools.imaker.internal.model.iContent.ACTION
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   310
	 * @generated
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   311
	 */
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   312
	EEnum getACTION();
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   313
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   314
	/**
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   315
	 * Returns the factory that creates the instances of the model.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   316
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   317
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   318
	 * @return the factory that creates the instances of the model.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   319
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   320
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   321
	IContentFactory getIContentFactory();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   322
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   323
	/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   324
	 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   325
	 * Defines literals for the meta objects that represent
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   326
	 * <ul>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   327
	 *   <li>each class,</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   328
	 *   <li>each feature of each class,</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   329
	 *   <li>each enum,</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   330
	 *   <li>and each data type</li>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   331
	 * </ul>
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   332
	 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   333
	 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   334
	 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   335
	interface Literals {
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   336
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   337
		 * The meta object literal for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.impl.ImageContentImpl <em>Image Content</em>}' class.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   338
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   339
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   340
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.ImageContentImpl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   341
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getImageContent()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   342
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   343
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   344
		EClass IMAGE_CONTENT = eINSTANCE.getImageContent();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   345
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   346
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   347
		 * The meta object literal for the '<em><b>Entries</b></em>' containment reference list feature.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   348
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   349
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   350
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   351
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   352
		EReference IMAGE_CONTENT__ENTRIES = eINSTANCE.getImageContent_Entries();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   353
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   354
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   355
		 * The meta object literal for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.impl.IbyEntryImpl <em>Iby Entry</em>}' class.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   356
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   357
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   358
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IbyEntryImpl
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   359
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getIbyEntry()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   360
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   361
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   362
		EClass IBY_ENTRY = eINSTANCE.getIbyEntry();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   363
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   364
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   365
		 * The meta object literal for the '<em><b>File</b></em>' attribute feature.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   366
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   367
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   368
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   369
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   370
		EAttribute IBY_ENTRY__FILE = eINSTANCE.getIbyEntry_File();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   371
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   372
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   373
		 * The meta object literal for the '<em><b>Target</b></em>' attribute feature.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   374
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   375
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   376
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   377
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   378
		EAttribute IBY_ENTRY__TARGET = eINSTANCE.getIbyEntry_Target();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   379
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   380
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   381
		 * The meta object literal for the '<em><b>Location</b></em>' attribute feature.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   382
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   383
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   384
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   385
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   386
		EAttribute IBY_ENTRY__LOCATION = eINSTANCE.getIbyEntry_Location();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   387
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   388
		/**
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   389
		 * The meta object literal for the '<em><b>Action</b></em>' attribute feature.
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   390
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   391
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   392
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   393
		 */
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   394
		EAttribute IBY_ENTRY__ACTION = eINSTANCE.getIbyEntry_Action();
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   395
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   396
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   397
		 * The meta object literal for the '<em><b>Enabled</b></em>' attribute feature.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   398
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   399
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   400
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   401
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   402
		EAttribute IBY_ENTRY__ENABLED = eINSTANCE.getIbyEntry_Enabled();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   403
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   404
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   405
		 * The meta object literal for the '<em><b>Status Message</b></em>' attribute feature.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   406
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   407
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   408
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   409
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   410
		EAttribute IBY_ENTRY__STATUS_MESSAGE = eINSTANCE.getIbyEntry_StatusMessage();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   411
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   412
		/**
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   413
		 * The meta object literal for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.IMAGESECTION <em>IMAGESECTION</em>}' enum.
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   414
		 * <!-- begin-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   415
		 * <!-- end-user-doc -->
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   416
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.IMAGESECTION
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   417
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getIMAGESECTION()
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   418
		 * @generated
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   419
		 */
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   420
		EEnum IMAGESECTION = eINSTANCE.getIMAGESECTION();
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   421
11
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   422
		/**
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   423
		 * The meta object literal for the '{@link com.nokia.s60tools.imaker.internal.model.iContent.ACTION <em>ACTION</em>}' enum.
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   424
		 * <!-- begin-user-doc -->
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   425
		 * <!-- end-user-doc -->
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   426
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.ACTION
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   427
		 * @see com.nokia.s60tools.imaker.internal.model.iContent.impl.IContentPackageImpl#getACTION()
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   428
		 * @generated
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   429
		 */
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   430
		EEnum ACTION = eINSTANCE.getACTION();
217e69fc5beb iMaker 3.1.0
haismail <hussein.ismail@nokia.com>
parents: 0
diff changeset
   431
0
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   432
	}
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   433
61163b28edca initial EPL conversion
dpodwall
parents:
diff changeset
   434
} //IContentPackage