java_stubs/javadrmutils/src/javasuperdparser.cpp
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:  CJavaSuperDParser implementation (EXCLUDE_JAVA version)
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "javasuperdparser.h"
       
    20 
       
    21 using namespace Java;
       
    22 
       
    23 
       
    24 // ======== MEMBER FUNCTIONS ========
       
    25 
       
    26 
       
    27 // ----------------------------------------------------------------------------
       
    28 // CJavaSuperDParser::NewL()
       
    29 // ----------------------------------------------------------------------------
       
    30 //
       
    31 EXPORT_C CJavaSuperDParser* CJavaSuperDParser::NewL(RFs& /* aFileSession */,
       
    32         const TDesC& /* aJarFileName */,
       
    33         const TDesC& /* aDestinationFolder */)
       
    34 {
       
    35     User::Leave(KErrNotSupported);
       
    36     return NULL;
       
    37 }
       
    38 
       
    39 // ----------------------------------------------------------------------------
       
    40 // CJavaSuperDParser::NewL()
       
    41 // ----------------------------------------------------------------------------
       
    42 //
       
    43 EXPORT_C CJavaSuperDParser* CJavaSuperDParser::NewL(RFs& /* aFileSession */,
       
    44         RFile& /* aJarFileHandle */,
       
    45         const TDesC& /* aDestinationFolder */)
       
    46 {
       
    47     User::Leave(KErrNotSupported);
       
    48     return NULL;
       
    49 }
       
    50 
       
    51 // ----------------------------------------------------------------------------
       
    52 // CJavaSuperDParser::~CJavaSuperDParser()
       
    53 // ----------------------------------------------------------------------------
       
    54 //
       
    55 CJavaSuperDParser::~CJavaSuperDParser()
       
    56 {
       
    57 }
       
    58 
       
    59 // ----------------------------------------------------------------------------
       
    60 // CJavaSuperDParser::CreateSuperDPackageL()
       
    61 // ----------------------------------------------------------------------------
       
    62 //
       
    63 EXPORT_C void CJavaSuperDParser::CreateSuperDPackageL(RFs& /* aFileSession */,
       
    64         const TDesC& /* aDestinationFileName */,
       
    65         const TDesC& /* aDescriptorFileName */,
       
    66         const TDesC& /* aContentFileName */)
       
    67 {
       
    68     User::Leave(KErrNotSupported);
       
    69 }
       
    70 
       
    71 // ----------------------------------------------------------------------------
       
    72 // CJavaSuperDParser::DescriptorFileName
       
    73 // ----------------------------------------------------------------------------
       
    74 //
       
    75 EXPORT_C TFileName CJavaSuperDParser::DescriptorFileName() const
       
    76 {
       
    77     return TFileName(KNullDesC);
       
    78 }
       
    79 
       
    80 // ----------------------------------------------------------------------------
       
    81 // CJavaSuperDParser::ContentFileName
       
    82 // ----------------------------------------------------------------------------
       
    83 //
       
    84 EXPORT_C TFileName CJavaSuperDParser::ContentFileName() const
       
    85 {
       
    86     return TFileName(KNullDesC);
       
    87 }
       
    88 
       
    89 // End of File