/*
 * __NAME__.java
 *
 * Created on __DATE__
 */

package Templates.API_Support.Window_System_API;

import org.openide.util.NbBundle;

/** A single panel for a wizard - the GUI portion.
 *
 * @author __USER__
 */
public class __Sample_Wizard__VisualPanel extends javax.swing.JPanel {

    /** The wizard panel descriptor associated with this GUI panel.
     * If you need to fire state changes or something similar, you can
     * use this handle to do so.
     */
    private final __NAME$VisualPanel$Panel$MyPanel__ panel;

    /** Create the wizard panel and set up some basic properties. */
    public __Sample_Wizard__VisualPanel(__NAME$VisualPanel$Panel$MyPanel__ panel) {
        this.panel = panel;
        initComponents();
        // Provide a name in the title bar.
        setName(NbBundle.getMessage(__NAME__.class, "TITLE_WizardPanel"));
        /*
        // Optional: provide a special description for this pane.
        // You must have turned on WizardDescriptor.WizardPanel_helpDisplayed
        // (see descriptor in standard iterator template for an example of this).
        try {
            putClientProperty("WizardPanel_helpURL", // NOI18N
                new URL("nbresloc:/__PACKAGE_AND_NAME_SLASHES$Panel$$somewhere/My__Help.html")); // NOI18N
        } catch (MalformedURLException mfue) {
            throw new IllegalStateException(mfue.toString());
        }
        */
    }

    /** This method is called from within the constructor to
     * initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is
     * always regenerated by the Form Editor.
     */
    private void initComponents() {//GEN-BEGIN:initComponents
        setLayout(new java.awt.BorderLayout());

    }//GEN-END:initComponents

    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables

}
