Coverage Report - com.ccg.macros.MacroHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
MacroHandler
N/A 
N/A 
1
 
 1  
 /*----------------------------------------------------------------
 2  
  * $Id: MacroHandler.java,v 1.1.1.1 2004/01/26 20:46:18 pkb Exp $
 3  
  * 
 4  
  * (c)2000 - Paul Blankenbaker
 5  
  *
 6  
  * Revision Log
 7  
  * 
 8  
  *  2000-11-16 12:55:21        Paul Blankenbaker 
 9  
  * 
 10  
  *         Created initial version
 11  
  */
 12  
 //----------------------------------------------------------------
 13  
 
 14  
 package com.ccg.macros;
 15  
 
 16  
 import java.io.*;                // needed for I/O operations
 17  
 import java.util.*;                // handy utility classes
 18  
 
 19  
 //----------------------------------------------------------------
 20  
 /** Describe...
 21  
  * 
 22  
  * <code><pre>
 23  
  * class Example {
 24  
  *   public void main(String[] args) {
 25  
  *     com.ccg.macros.MacroHandler o = new com.ccg.macros.MacroHandler();
 26  
  *           System.out.println(o);
 27  
  *   }
 28  
  * }
 29  
  * </pre></code>
 30  
  * 
 31  
  * @version $Revision: 1.1.1.1 $
 32  
  * 
 33  
  * @since 1.0
 34  
  * 
 35  
  * @author $Author: pkb $
 36  
  * 
 37  
  * @see AtMacros */
 38  
 //----------------------------------------------------------------
 39  
 
 40  
 public interface MacroHandler {
 41  
 
 42  
   //----------------------------------------------------------------
 43  
   /** One line summary...
 44  
    * 
 45  
    * Describe...
 46  
    * 
 47  
    * @param        arg1
 48  
    * 
 49  
    *         arg1-describe
 50  
    * 
 51  
    * @param        arg2
 52  
    * 
 53  
    *         arg2-describe
 54  
    * 
 55  
    * @throws        exc
 56  
    * 
 57  
    *         Why thrown
 58  
    * 
 59  
    * @return
 60  
    * 
 61  
    *         ret-description
 62  
    * 
 63  
    * @since        1.0 */
 64  
   //----------------------------------------------------------------
 65  
 
 66  
   public void process(Output out, Vector args)
 67  
     throws IOException, InterpretException;
 68  
 
 69  
 }
 70  
 
 71  
 
 72