Uses of Interface
org.inxar.jenesis.Freeform

Packages that use Freeform
com.inxar.jenesis Classes which implement Java language elements. 
org.inxar.jenesis Interfaces which abstract Java language elements (read the desciption below). 
 

Uses of Freeform in com.inxar.jenesis
 

Methods in com.inxar.jenesis that return Freeform
 Freeform MVM.newFree(java.lang.String code)
           
 

Uses of Freeform in org.inxar.jenesis
 

Methods in org.inxar.jenesis that return Freeform
abstract  Freeform VirtualMachine.newFree(java.lang.String code)
          Expression factory method which returns a new freeform expression with the given code.
 Freeform Freeform.write(boolean b)
          Writes a boolean.
 Freeform Freeform.write(char c)
          Writes a single character.
 Freeform Freeform.write(char[] chars)
          Writes an array of characters.
 Freeform Freeform.write(int i)
          Writes an integer.
 Freeform Freeform.write(float f)
          Writes a float.
 Freeform Freeform.write(double d)
          Writes a double.
 Freeform Freeform.write(java.lang.String s)
          Writes a string.
 Freeform Freeform.write(java.lang.Object o)
          Writes an object.
 Freeform Freeform.write(java.lang.Object[] ao)
          Writes each element of the given object array.
 Freeform Freeform.space()
          Writes a single space.
 Freeform Freeform.newLine()
          Adds a the newLine string according to System.getProperty("line.separator") and the line is padded with the n tab characters where n is the number returned by getIndentNumber().
 Freeform Freeform.resetLine()
          Resets the tab counter to zero and calls the newLine() method.
 Freeform Freeform.indentLine()
          Increments the tab and calls newLine()
 Freeform Freeform.dedentLine()
          Decrements the tab and calls newLine()