Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jext.dawn.test
Class IfFunction  view IfFunction download IfFunction.java

java.lang.Object
  extended byorg.jext.dawn.Function
      extended byorg.jext.dawn.test.IfFunction

public class IfFunction
extends org.jext.dawn.Function

This class provides an implementation of the if/else statement.
Usage:
if [condition] then [code] else [code] end
else is optional.


Field Summary
 
Fields inherited from class org.jext.dawn.Function
 
Constructor Summary
IfFunction()
           
 
Method Summary
 void invoke(org.jext.dawn.DawnParser parser)
          Executes the function.
 
Methods inherited from class org.jext.dawn.Function
getHelp, getName
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IfFunction

public IfFunction()
Method Detail

invoke

public void invoke(org.jext.dawn.DawnParser parser)
            throws org.jext.dawn.DawnRuntimeException
Description copied from class: org.jext.dawn.Function
Executes the function. Usually, the function should make use of the DawnParser given as parameter.