FileDocCategorySizeDatePackage
VelocityHtmlPanelSimulator.javaAPI DocExample928Mon Jan 09 11:02:02 GMT 2006None

VelocityHtmlPanelSimulator

public class VelocityHtmlPanelSimulator extends Object
Created by IntelliJ IDEA. User: Jonathan Simon Date: Mar 3, 2005 Time: 3:41:10 PM To change this template use File | Settings | File Templates.

Fields Summary
Constructors Summary
public VelocityHtmlPanelSimulator()

        JFrame frame = new JFrame("Velocity HTML Panel Simulator");
        frame.setBounds(200,200, 500, 350);

        VelocityHtmlPanel velocityHtmlPanel = new VelocityHtmlPanel();

        frame.getContentPane().setLayout(new BorderLayout());
        frame.getContentPane().add(velocityHtmlPanel.getComponent(), BorderLayout.CENTER);

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.show();

    
Methods Summary
public static voidmain(java.lang.String[] args)

        new VelocityHtmlPanelSimulator();