Package net.sourceforge.align.formatter

Examples of net.sourceforge.align.formatter.InfoFormatter


    } else if (cls.equals("html")) {
      Writer writer = getSingleWriter(commandLine);
      formatter = new HtmlFormatter(writer);
    } else if (cls.equals("info")) {
      Writer writer = getSingleWriter(commandLine);
      formatter = new InfoFormatter(writer);
    } else {
      throw new UnknownParameterException("class");
    }
    Parser parser = new AlParser(getIn());
    List<Alignment> alignmentList = parser.parse();
View Full Code Here

TOP

Related Classes of net.sourceforge.align.formatter.InfoFormatter

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.