KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * ProgressBarIndeterminateState.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 ProgressBarIndeterminateState extends State {
15     ProgressBarIndeterminateState() {
16         super("Indeterminate");
17     }
18
19     @Override JavaDoc protected boolean isInState(JComponent c) {
20
21                         return ((JProgressBar)c).isIndeterminate();
22                
23     }
24 }
25
26
Popular Tags