javaruntimes/midp/runtimestarter/inc/applicationstatecontroller.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 11 Jun 2010 13:33:44 +0300
changeset 35 85266cc22c7f
parent 21 2a9601315dfc
permissions -rw-r--r--
Revision: v2.2.1 Kit: 2010123

/*
* Copyright (c) 2009 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:  This class provides container for message.
*
*/


#ifndef APPLICATIONSTATECONTROLLER_H
#define APPLICATIONSTATECONTROLLER_H

#include "javaosheaders.h"

namespace java // codescanner::namespace
{

namespace runtime // codescanner::namespace
{

enum ApplicationState
{
    START_APPLICATION,
    CONTINUE_APPLICATION_STARTUP,
    CANCEL_APPLICATION_STARTUP,
    JVM_STARTED,
    STOPPING_JVM,
    JVM_STOPPED,
    CLOSE_APPLICATION
};

OS_NONSHARABLE_CLASS(ApplicationStateController)
{
public:

    //API
    virtual void ApplicationStateChangeRequest(ApplicationState state) = 0;

protected:
    //Destructor
    virtual ~ApplicationStateController() {}

};
} //end namespace runtime
} //end namespace java

#endif // APPLICATIONSTATECONTROLLER_H