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();