java_stubs/javadebugapi/src/javadebugapi.cpp
branchRCL_3
changeset 8 014f8c42e1d4
parent 0 3fd91c96c86c
child 15 a9812d2cae03
equal deleted inserted replaced
7:9d598f7f02da 8:014f8c42e1d4
       
     1 /*
       
     2 * Copyright (c) 2009 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 Debug API stub implementation.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <javadebugapi.h>
       
    21 #include <javadiagnostic.h>
       
    22 
       
    23 EXPORT_C
       
    24 TBool java::debug::installApp(HBufC& /*aFilename*/,
       
    25                               TUid& /*aSuiteUid*/,
       
    26                               RArray<TUid>& /*aApplicationUid*/)
       
    27 {
       
    28     return EFalse;
       
    29 }
       
    30 
       
    31 EXPORT_C
       
    32 TBool java::debug::uninstallApp(TUid /*aSuiteUid*/)
       
    33 {
       
    34     return EFalse;
       
    35 }
       
    36 
       
    37 EXPORT_C
       
    38 TBool java::debug::startApp(TUid /*aApplicationUid*/, HBufC& /*aUeiParameters*/)
       
    39 {
       
    40     return EFalse;
       
    41 }
       
    42 
       
    43 EXPORT_C
       
    44 TBool java::debug::stopApp(TUid /*aApplicationUid*/)
       
    45 {
       
    46     return EFalse;
       
    47 }
       
    48 
       
    49 EXPORT_C
       
    50 java::debug::JavaDiagnostic* java::debug::JavaDiagnostic::createInstance()
       
    51 {
       
    52     return 0;
       
    53 }