javamanager/javasettings/appmngrplugin/inc/appmngr2midletinfo.h
branchRCL_3
changeset 14 04becd199f91
equal deleted inserted replaced
13:f5050f1da672 14:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Midlet plugin information interface
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef APPMNGR2MIDLETINFO_H
       
    20 #define APPMNGR2MIDLETINFO_H
       
    21 
       
    22 /**
       
    23  * Midlet runtime interface for common used midlet details
       
    24  *
       
    25  * @lib appmngr2midletplugin.dll
       
    26  * @since S60 v9.1
       
    27  */
       
    28 class MAppMngr2MidletInfo
       
    29 {
       
    30 public:
       
    31     /**
       
    32      * Path to jar file
       
    33      *
       
    34      * @since S60 9.1
       
    35      * @return Path to jar file
       
    36      */
       
    37     virtual const TDesC& JarFileName() const = 0;
       
    38 
       
    39     /**
       
    40      * Path to jad file
       
    41      *
       
    42      * @since S60 9.1
       
    43      * @return Path to jad file
       
    44      */
       
    45     virtual const TDesC& JadFileName() const = 0;
       
    46 
       
    47     /**
       
    48      * Installed application MIME type
       
    49      *
       
    50      * @since S60 9.1
       
    51      * @return Application MIME type
       
    52      */
       
    53     virtual const TDesC8& MimeType() const = 0;
       
    54 };
       
    55 
       
    56 #endif // APPMNGR2MIDLETINFO_H