Package org.jdesktop.swingx.JXBusyLabel

Examples of org.jdesktop.swingx.JXBusyLabel.Direction


    /**
     * Sets new spinning direction.
     * @param dir Spinning direction.
     */
    public void setDirection(Direction dir) {
        Direction old = getDirection();
        this.direction = dir;
        if (getDirection() != old && getDirection() != null
                && !getDirection().equals(old)) {
            firePropertyChange("direction", old, getDirection());
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.JXBusyLabel.Direction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.