Package org.apache.bsf.util

Examples of org.apache.bsf.util.IndentWriter


   */
  public void formatCode(Reader source, Writer target)
  {
  String         line;
  BufferedReader in  = new BufferedReader(source);
  IndentWriter   out = new IndentWriter(new BufferedWriter(target), true);

  try
  {
    origIndent    = 0;
    inCPP_Comment = false;

    while ((line = in.readLine()) != null)
    {
    line = line.trim();

    if (line.length() > 0)
    {
      indent        = origIndent;
      hangingIndent = indent + indentationStep;
      printLine(line, out);
    }
    else
      out.println();
    }
  }
  catch (IOException e)
  {
    e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.apache.bsf.util.IndentWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.