Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / Swing

Sliding Panel in Java

Rate me:
Please Sign up or sign in to vote.
5.00/5 (8 votes)
21 Mar 2013CPOL3 min read 46.8K   2K   8  
Animated sliding panel in Swing.
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package slidepanel;

/**
 *
 * @author root
 */
public interface StateListener {
   public void toggleState() ;
   public void reset() ;

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
Make the world open source

Comments and Discussions