usr/src/java/adr/org/opensolaris/os/adr/adrgen/DocGenerator.java
changeset 809 8a6fba4105d7
parent 808 2122a04679c0
child 810 9907d0f6f03a
--- a/usr/src/java/adr/org/opensolaris/os/adr/adrgen/DocGenerator.java	Wed Mar 14 04:47:00 2012 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,67 +0,0 @@
-/*
- * CDDL HEADER START
- *
- * The contents of this file are subject to the terms of the
- * Common Development and Distribution License (the "License").
- * You may not use this file except in compliance with the License.
- *
- * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
- * or http://www.opensolaris.org/os/licensing.
- * See the License for the specific language governing permissions
- * and limitations under the License.
- *
- * When distributing Covered Code, include this CDDL HEADER in each
- * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
- * If applicable, add the following below this CDDL HEADER, with the
- * fields enclosed by brackets "[]" replaced with your own identifying
- * information: Portions Copyright [yyyy] [name of copyright owner]
- *
- * CDDL HEADER END
- */
-
-/*
- * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
- */
-
-package org.opensolaris.os.adr.adrgen;
-
-import org.opensolaris.os.adr.*;
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.InputStream;
-import org.w3c.dom.Document;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.TransformerConfigurationException;
-import javax.xml.transform.TransformerException;
-import javax.xml.transform.TransformerFactory;
-import javax.xml.transform.dom.DOMSource;
-import javax.xml.transform.stream.StreamSource;
-import javax.xml.transform.stream.StreamResult;
-
-public class DocGenerator {
-
-    enum Format { NONE, TEXT, DOCBOOK };
-    private static final String RMFMT = "ADRrmdoc.xsl";
-    private static final String DBFMT = "ADRdocbook.xsl";
-    private static final String TXTFMT = "ADRtext.xsl";
-
-    static void generate(ADRGen parser, Format doc_fmt)
-	throws FileNotFoundException, TransformerException,
-	TransformerConfigurationException {
-	StreamResult output = new StreamResult(System.out);
-	String resource;
-	if (doc_fmt == Format.DOCBOOK)
-	    resource = DBFMT;
-	else if (doc_fmt == Format.TEXT)
-	    resource = TXTFMT;
-	else
-	    resource = RMFMT;
-	InputStream is = DocGenerator.class.getResourceAsStream(resource);
-	StreamSource stylesource = new StreamSource(is);
-
-	TransformerFactory tFactory = TransformerFactory.newInstance();
-	Transformer transformer = tFactory.newTransformer(stylesource);
-	DOMSource source = new DOMSource(parser.doc_);
-	transformer.transform(source, output);
-    }
-}