Clover coverage report -
Coverage timestamp: Sun Apr 18 2004 21:32:30 EDT
file stats: LOC: 52   Methods: 0
NCLOC: 4   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SHTMLAction.java - - - -
coverage
 1   
 /*
 2   
  * SimplyHTML, a word processor based on Java, HTML and CSS
 3   
  * Copyright (C) 2002 Ulrich Hilger
 4   
  *
 5   
  * This program is free software; you can redistribute it and/or
 6   
  * modify it under the terms of the GNU General Public License
 7   
  * as published by the Free Software Foundation; either version 2
 8   
  * of the License, or (at your option) any later version.
 9   
  *
 10   
  * This program is distributed in the hope that it will be useful,
 11   
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12   
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13   
  * GNU General Public License for more details.
 14   
  *
 15   
  * You should have received a copy of the GNU General Public License
 16   
  * along with this program; if not, write to the Free Software
 17   
  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 18   
  */
 19   
 
 20   
 import javax.swing.Action;
 21   
 
 22   
 /**
 23   
  * Adds methods to the <code>javax.swing.Action</code> interface, needed
 24   
  * by Application SimplyHTML.
 25   
  *
 26   
  * @author Ulrich Hilger
 27   
  * @author Light Development
 28   
  * @author <a href="http://www.lightdev.com">http://www.lightdev.com</a>
 29   
  * @author <a href="mailto:info@lightdev.com">info@lightdev.com</a>
 30   
  * @author published under the terms and conditions of the
 31   
  *      GNU General Public License,
 32   
  *      for details see file gpl.txt in the distribution
 33   
  *      package of this software
 34   
  *
 35   
  * @version stage 11, April 27, 2003
 36   
  *
 37   
  * @see javax.swing.Action
 38   
  */
 39   
 
 40   
 public interface SHTMLAction extends Action {
 41   
 
 42   
   /** update the action's state */
 43   
   public void update();
 44   
 
 45   
   /**
 46   
    * this method should be called from the constructor
 47   
    * of each SHTMLAction and can be used to get
 48   
    * action properties from a resource file
 49   
    */
 50   
   public void getProperties();
 51   
 
 52   
 }