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