You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SIPRP/trunk/SIPRPSoft/src/siprp/ui/SIPRPTabbedWindow.java

33 lines
807 B

package siprp.ui;
import javax.swing.JPanel;
import com.evolute.utils.ui.window.TabbedWindow;
public class SIPRPTabbedWindow extends TabbedWindow
{
private static final long serialVersionUID = 1L;
public SIPRPTabbedWindow( JPanel upperPanel, String[] tabNames, boolean[][] activeActions )
throws Exception
{
super( upperPanel, tabNames, activeActions );
centerLater();
}
public SIPRPTabbedWindow( boolean upperPanel, String[] tabNames, double weight, boolean[][] activeActions )
throws Exception
{
super( upperPanel, tabNames, weight, activeActions );
centerLater();
}
public SIPRPTabbedWindow( JPanel upperPanel, String[] tabNames, double weight, boolean[][] activeActions )
throws Exception
{
super( upperPanel, tabNames, weight, activeActions );
centerLater();
}
}