macros
Class INCLUDE

java.lang.Object
  |
  +--jatha.Macro
        |
        +--macros.INCLUDE

public class INCLUDE
extends Macro

INCLUDE(filename)

Inserts the contents of the specified file, similar to the C-style #include. However, if the included file has macros, they will not be processed.


Fields inherited from class jatha.Macro
util
 
Constructor Summary
INCLUDE()
           
 
Method Summary
 void expand(java.lang.String[] args, java.io.Writer out, Expander expander)
          Expands the macro
 
Methods inherited from class jatha.Macro
expand
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

INCLUDE

public INCLUDE()
Method Detail

expand

public void expand(java.lang.String[] args,
                   java.io.Writer out,
                   Expander expander)
Expands the macro
Overrides:
expand in class Macro