01: /*
02: * @(#)WindowsTabbedPaneUI.java
03: *
04: * Copyright 2002 JIDE Software Inc. All rights reserved.
05: */
06:
07: package com.jidesoft.plaf.metal;
08:
09: import com.jidesoft.plaf.vsnet.VsnetJideTabbedPaneUI;
10:
11: import javax.swing.*;
12: import javax.swing.plaf.ComponentUI;
13:
14: /**
15: * JideTabbedPane UI implementation
16: */
17: public class MetalJideTabbedPaneUI extends VsnetJideTabbedPaneUI {
18: public static ComponentUI createUI(JComponent c) {
19: return new MetalJideTabbedPaneUI();
20: }
21: }
|