homescreenapp/stateplugins/hsmenuworkerstateplugin/inc/hsmenubasestate.h
changeset 46 23b5d6a29cce
parent 39 4e8ebe173323
--- a/homescreenapp/stateplugins/hsmenuworkerstateplugin/inc/hsmenubasestate.h	Mon May 03 12:24:59 2010 +0300
+++ b/homescreenapp/stateplugins/hsmenuworkerstateplugin/inc/hsmenubasestate.h	Fri May 14 15:43:04 2010 +0300
@@ -27,17 +27,6 @@
 class HsShortcutService;
 class HsContentService;
 
-/**
- * @ingroup group_hsworkerstateplugin
- * @brief Menu Base State
- *
- * Menu Base state is the base class for states used in Menu.
- * It provides basic functionality that makes implemenatation state easier.
- * Derived implementation can request specific service and access it using convience function.
- *
- * @lib ?library
- * @since S60 ?S60_version
- */
 class HsMenuBaseState: public QState
 {
     Q_OBJECT
@@ -46,77 +35,24 @@
 
 public:
 
-    /**
-     * Constructor.
-     *
-     * @since S60 ?S60_version.
-     * @param objectName object name, used for debug purpose
-     * @param parent Owner.
-     */
     HsMenuBaseState(const QString &objectName, QState *parent = 0);
 
-    /**
-
-     * Destructor.
-     *
-     * @since S60 ?S60_version.
-     */
     virtual ~HsMenuBaseState();
 
 protected:
 
-    /**
-     * Constructs contained objects.
-     *
-     * @since S60 ?S60_version.
-     * @param objectName object name, used for debug purpose
-     */
     void construct(const QString &objectName);
 
-    /**
-     * Request for services
-     *
-     * notice that services are appended to the list,
-     * so this fuction can be called more than once.
-     * @since S60 ?S60_version.
-     * @param services list of requested services
-     * this method must be called during construction phased of derived class
-     */
     void requestServices(const QVariantList &services);
 
-    /**
-     * Convenience method that request single service.
-     *
-     * @param service service to be requested.
-     * @see requestServices
-     */
     void requestService(const QVariant &service);
 
-    /**
-     * Convenience method that returns the shortcut serviceif was requested
-     *
-     * @since S60 ?S60_version.
-     * @return Shortcut service if exists.
-     */
     HsShortcutService *shortcutService() const;
 
-    /**
-     * Convenient method that returns the content serviceif was requested
-     *
-     * @since S60 ?S60_version.
-     * @return Content service if exists.
-     */
     HsContentService *contentService() const;
 
 private:
-    /**
-     * Function return value for specified property and
-     * if it is not valid add warning message on console.
-     *
-     * @since S60 ?S60_version.
-     * @param propertyName Property name.
-     * @return Property after validation.
-     */
+
     QVariant propertyWithChecking(const char *propertyName) const;