blob: 671986029bfffbe01a68832506571684517068a9 [file] [log] [blame]
/*
* Copyright (c) 2004 - 2012 Eike Stepper (Loehne, Germany) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
*/
package promoter;
import java.io.File;
import java.io.PrintStream;
import promoter.util.IO;
/**
* @author Eike Stepper
*/
public class WebGenerator extends PromoterComponent
{
public WebGenerator()
{
}
public void generateWeb(WebNode webNode)
{
System.out.println();
PrintStream out = null;
try
{
out = new PrintStream(new File(PromoterConfig.INSTANCE.getCompositionTempArea(), "index.html"));
webNode.generate(out, 0);
out.flush();
}
catch (Exception ex)
{
throw new RuntimeException(ex);
}
finally
{
IO.close(out);
}
}
}