/*
Use this class with the DecisionTree class
Copyright 1998-2006 DeNova
*/
import java.awt.BorderLayout;
import javax.swing.JLabel;
import com.denova.ui.Fonts;
import com.denova.ui.WizardPanel;
import com.denova.util.PropertyList;
import com.denova.JExpress.Installer.InstallPropertyNames;
public class Branch2 extends WizardPanel
implements InstallPropertyNames {
public Branch2 (PropertyList properties) {
super (properties);
setLayout ( new BorderLayout () );
JLabel notice = new JLabel ( "Branch 2", JLabel.CENTER);
notice.setFont(Fonts.Bold);
add ( notice, BorderLayout. CENTER );
}
/**
* Enter the panel.
*
* Do not call this method; only the wizard should call it.
*/
public void enter()
{
// There was no need to even define this method because
// there's nothing special to do. The WizardPanel will
// automatically let the user enter the info and then
// move to the next panel when the user presses the Next
// button *if* all information is correct
}
public String getName () {
return "Branch2";
}
}