java_plat/java_registry_api/inc/javaregistryentrytype.h
changeset 1 53c80e845d7c
parent 0 3fd91c96c86c
child 3 255dd6e7afb6
equal deleted inserted replaced
0:3fd91c96c86c 1:53c80e845d7c
     1 /*
       
     2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Java Registy API header file
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef JAVAREGISTRYENTRYTYPE_H
       
    20 #define JAVAREGISTRYENTRYTYPE_H
       
    21 
       
    22 namespace Java
       
    23 {
       
    24 
       
    25 /**
       
    26  * This enumeration lists Java Registry Entry types.
       
    27  */
       
    28 enum TJavaRegistryEntryType
       
    29 {
       
    30     // EGeneralPackage defines the starting value of the range including
       
    31     // the ids of entry types which are considered as package entries
       
    32     EGeneralPackage         = 100,
       
    33     EMidp2MidletSuite       = 101,
       
    34     EDeploymentPackage      = 102,    // OSGi Deployment Package
       
    35     EBundle                 = 103,
       
    36     EOsgiAwareMidletSuite   = 104,    // OSGi Aware Midlet Suite
       
    37 
       
    38     // EGeneralApplication defines the starting value of the range including
       
    39     // the ids of entry types which are considered as application entries
       
    40     EGeneralApplication     = 200,
       
    41     EMidp2Midlet            = 201,
       
    42     EOsgiService            = 202,
       
    43     EOsgiAwareMidlet        = 203,    // OSGi Aware Midlet Application
       
    44     EERCP                   = 204     // eRCP Application
       
    45 };
       
    46 
       
    47 }
       
    48 
       
    49 #endif