Package org.jboss.forge.addon.text.highlight

Examples of org.jboss.forge.addon.text.highlight.Scanner


      Map<String, Object> options = new HashMap<String, Object>();
      // OutputStream out = NullOutputStream.INSTANCE;
      Encoder encoder = new NullEncoder();
      // Encoder encoder = new TerminalEncoder(out, Syntax.defaultTheme(), new HashMap<String, Object>());

      Scanner scanner = new JavaScriptScanner();
      for (int i = 0; i < 60; i++)
      {
         long start = System.currentTimeMillis();
         scanner.scan(new StringScanner(content), encoder, options);
         System.out.println(i + " [" + (System.currentTimeMillis() - start) + "]");
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.forge.addon.text.highlight.Scanner

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.