Uses of Interface
org.inxar.syntacs.util.Channel

Packages that use Channel
org.inxar.syntacs.util Declares interfaces which model basic and or fundamental abstract data types used throughout the translation process. 
 

Uses of Channel in org.inxar.syntacs.util
 

Methods in org.inxar.syntacs.util that return Channel
 Channel Log.trace()
          Gets the tracing Channel.
 Channel Log.debug()
          Gets the debugging Channel.
 Channel Log.info()
          Gets the general info Channel.
 Channel Log.warn()
          Gets the warning Channel.
 Channel Log.critical()
          Gets the critical Channel.
 Channel Log.catastrophe()
          Gets the catastrophe Channel.
 Channel Channel.write(Object msg)
          Writes an Object.
 Channel Channel.write(boolean msg)
          Writes a boolean.
 Channel Channel.write(char msg)
          Writes a char.
 Channel Channel.write(int msg)
          Writes an int.
 Channel Channel.write(String msg)
          Writes a String.
 Channel Channel.spc()
          Writes a single space.
 Channel Channel.quote(Object msg)
          Writes a message enclosed in double quotations.
 Channel Channel.stripe(char c, int n)
          Writes the given char n number of times.
 Channel Channel.writeln()
          Writes a newline character.
 Channel Channel.over()
          Increments an indent which is manifested after successive newlines.
 Channel Channel.back()
          Decrements an indent which is manifested after successive newlines.