javaruntimes/midp/runtimestarter/inc/applicationstatecontroller.h
branchRCL_3
changeset 19 04becd199f91
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/javaruntimes/midp/runtimestarter/inc/applicationstatecontroller.h	Tue Apr 27 16:30:29 2010 +0300
@@ -0,0 +1,57 @@
+/*
+* 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
+