/* * Copyright 2005 MH-Software-Entwicklung. All rights reserved. * Use is subject to license terms. */ package com.jtattoo.plaf.smart; import javax.swing.*; import javax.swing.plaf.*; import com.jtattoo.plaf.*; /** * @author Michael Hagen */ public class SmartInternalFrameUI extends BaseInternalFrameUI { public SmartInternalFrameUI(JInternalFrame b) { super(b); } public static ComponentUI createUI(JComponent c) { return new SmartInternalFrameUI((JInternalFrame) c); } protected JComponent createNorthPane(JInternalFrame w) { titlePane = new SmartInternalFrameTitlePane(w); return titlePane; } }