1 19 20 package org.openide.awt; 21 22 import javax.swing.JTabbedPane ; 23 24 30 public class TabbedPaneFactory { 31 32 36 public static final String PROP_CLOSE = CloseButtonTabbedPane.PROP_CLOSE; 37 38 39 private TabbedPaneFactory() { 40 } 41 42 50 public static JTabbedPane createCloseButtonTabbedPane() { 51 return new CloseButtonTabbedPane(); 52 } 53 } 54 | Popular Tags |