KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java > swing > plaf > nimbus > InternalFrameInternalFrameTitlePaneWindowFocusedState


1 /*
2  * InternalFrameInternalFrameTitlePaneWindowFocusedState.java 07/12/12
3  *
4  * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package com.sun.java.swing.plaf.nimbus;
8
9 import java.awt.*;
10 import javax.swing.*;
11
12 /**
13  */

14 class InternalFrameInternalFrameTitlePaneWindowFocusedState extends State {
15     InternalFrameInternalFrameTitlePaneWindowFocusedState() {
16         super("WindowFocused");
17     }
18
19     @Override JavaDoc protected boolean isInState(JComponent c) {
20
21                          return c instanceof JInternalFrame && ((JInternalFrame)c).isSelected();
22     }
23 }
24
25
Popular Tags