macros
Class CTOR

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

public class CTOR
extends Macro

CTOR(prop1, prop2, ...)

The CTOR (short for constructor) macro declares a constructor. In order to use the CTOR macro, you must have used the CLASS macro when declaring your class, and the PROP macro when declaring the properties. Example:

 public @CLASS(Point) {

See Also:
CLASS, PROP

Fields inherited from class jatha.Macro
util
 
Constructor Summary
CTOR()
           
 
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

CTOR

public CTOR()
Method Detail

expand

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