Coverage Report - org.xmlhammer.gui.actions.HelpQuickStartAction
 
Classes in this File Line Coverage Branch Coverage Complexity
HelpQuickStartAction
75% 
N/A 
1
 
 1  
 /*
 2  
  * $Id$
 3  
  *
 4  
  * The contents of this file are subject to the Mozilla Public License 
 5  
  * Version 1.1 (the "License"); you may not use this file except in 
 6  
  * compliance with the License. You may obtain a copy of the License at 
 7  
  * http://www.mozilla.org/MPL/ 
 8  
  *
 9  
  * Software distributed under the License is distributed on an "AS IS" basis, 
 10  
  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
 11  
  * for the specific language governing rights and limitations under the License.
 12  
  *
 13  
  * The Original Code is XML Hammer code. (org.xmlhammer.*)
 14  
  *
 15  
  * The Initial Developer of the Original Code is Edwin Dankert. Portions created 
 16  
  * by the Initial Developer are Copyright (C) 2005 - 2006 the Initial Developer. 
 17  
  * All Rights Reserved.
 18  
  *
 19  
  * Contributor(s): Edwin Dankert <edankert@gmail.com>
 20  
  */
 21  
 package org.xmlhammer.gui.actions;
 22  
 
 23  
 import org.bounce.RunnableAction;
 24  
 import org.xmlhammer.gui.XMLHammer;
 25  
 
 26  
 /**
 27  
  * An action that can be used to show Properties for a specific page.
 28  
  *
 29  
  * @version        $Revision$, $Date$
 30  
  * @author Edwin Dankert <edankert@gmail.com>
 31  
  */
 32  
  public class HelpQuickStartAction extends RunnableAction {
 33  
          private static final long serialVersionUID = 3258134648029526321L;
 34  
 
 35  220
          private XMLHammer parent = null;
 36  
         
 37  
          /**
 38  
          * The constructor for the action which shows Properties for a specific page.
 39  
      * 
 40  
      * @param page the page the properties should be shown for.
 41  
          */
 42  
          public HelpQuickStartAction(XMLHammer parent) {
 43  220
                  super("Quick Start");
 44  
 
 45  220
         putValue(MNEMONIC_KEY, new Integer('Q'));
 46  220
                 putValue(SHORT_DESCRIPTION, "Quick Start");
 47  
                 
 48  220
         this.parent = parent;
 49  220
          }
 50  
          
 51  
         /**
 52  
          * The implementation of the Page Properties action, called 
 53  
          * after a user action.
 54  
          */
 55  
          public void run() {
 56  0
         parent.showHelpQuickStart();
 57  0
          }
 58  
 }