java_stubs/javadrmutils/src/javasuperdparser.cpp
changeset 1 53c80e845d7c
parent 0 3fd91c96c86c
child 3 255dd6e7afb6
--- a/java_stubs/javadrmutils/src/javasuperdparser.cpp	Thu Jan 07 16:18:57 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,89 +0,0 @@
-/*
-* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  CJavaSuperDParser implementation (EXCLUDE_JAVA version)
-*
-*/
-
-
-#include "javasuperdparser.h"
-
-using namespace Java;
-
-
-// ======== MEMBER FUNCTIONS ========
-
-
-// ----------------------------------------------------------------------------
-// CJavaSuperDParser::NewL()
-// ----------------------------------------------------------------------------
-//
-EXPORT_C CJavaSuperDParser* CJavaSuperDParser::NewL(RFs& /* aFileSession */,
-        const TDesC& /* aJarFileName */,
-        const TDesC& /* aDestinationFolder */)
-{
-    User::Leave(KErrNotSupported);
-    return NULL;
-}
-
-// ----------------------------------------------------------------------------
-// CJavaSuperDParser::NewL()
-// ----------------------------------------------------------------------------
-//
-EXPORT_C CJavaSuperDParser* CJavaSuperDParser::NewL(RFs& /* aFileSession */,
-        RFile& /* aJarFileHandle */,
-        const TDesC& /* aDestinationFolder */)
-{
-    User::Leave(KErrNotSupported);
-    return NULL;
-}
-
-// ----------------------------------------------------------------------------
-// CJavaSuperDParser::~CJavaSuperDParser()
-// ----------------------------------------------------------------------------
-//
-CJavaSuperDParser::~CJavaSuperDParser()
-{
-}
-
-// ----------------------------------------------------------------------------
-// CJavaSuperDParser::CreateSuperDPackageL()
-// ----------------------------------------------------------------------------
-//
-EXPORT_C void CJavaSuperDParser::CreateSuperDPackageL(RFs& /* aFileSession */,
-        const TDesC& /* aDestinationFileName */,
-        const TDesC& /* aDescriptorFileName */,
-        const TDesC& /* aContentFileName */)
-{
-    User::Leave(KErrNotSupported);
-}
-
-// ----------------------------------------------------------------------------
-// CJavaSuperDParser::DescriptorFileName
-// ----------------------------------------------------------------------------
-//
-EXPORT_C TFileName CJavaSuperDParser::DescriptorFileName() const
-{
-    return TFileName(KNullDesC);
-}
-
-// ----------------------------------------------------------------------------
-// CJavaSuperDParser::ContentFileName
-// ----------------------------------------------------------------------------
-//
-EXPORT_C TFileName CJavaSuperDParser::ContentFileName() const
-{
-    return TFileName(KNullDesC);
-}
-
-// End of File