|
Scala example source code file (ManMaker.scala)
The ManMaker.scala Scala example source code/* NSC -- new Scala compiler * Copyright 2005-2013 LAMP/EPFL * @author Stephane Micheloud * Adapted from Lex Spoon's sbaz manual */ package scala.tools.docutil import org.apache.tools.ant.Task import java.io.{File, FileOutputStream} class ManMaker extends Task { /** The command for which to generate the man page */ private var command: List[String] = Nil /** The directory to put html pages in */ private var htmlout: Option[File] = None /** The directory to put man pags in */ private var manout: Option[File] = None def setCommand(input: String) { command = input.split(",").toList.flatMap { s => val st = s.trim() if (st != "") List(st) else Nil } } def setHtmlout(input: File) { htmlout = Some(input) } def setManout(input: File) { manout = Some(input) } override def execute() { if (command.isEmpty) sys.error("Attribute 'command' is not set.") if (htmlout.isEmpty) sys.error("Attribute 'htmlout' is not set.") if (manout.isEmpty) sys.error("Attribute 'manout' is not set.") command foreach (cmd => { val classname = "scala.man1."+ cmd val htmlFileName = htmlout.get.getPath + File.separator + cmd + ".html" val htmlFile = new java.io.FileOutputStream(htmlFileName) EmitHtml.emitHtml(classname, htmlFile) val manFileName = manout.get.getPath + File.separator + "man1" + File.separator + cmd + ".1" val manFile = new FileOutputStream(manFileName) EmitManPage.emitManPage(classname, manFile) }) } } Other Scala source code examplesHere is a short list of links related to this Scala ManMaker.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.