Package com.alee.extended.time

Examples of com.alee.extended.time.WebClock


            {
                final WebNotification notificationPopup = new WebNotification ();
                notificationPopup.setIcon ( NotificationIcon.clock );
                notificationPopup.setDisplayTime ( 5000 );

                final WebClock clock = new WebClock ();
                clock.setClockType ( ClockType.timer );
                clock.setTimeLeft ( 6000 );
                clock.setTimePattern ( "'This notification will close in' ss 'seconds'" );
                notificationPopup.setContent ( new GroupPanel ( clock ) );

                NotificationManager.showNotification ( notificationPopup );
                clock.start ();
            }
        } );

        return new GroupPanel ( 4, false, notification1, notification2 );
    }
View Full Code Here

TOP

Related Classes of com.alee.extended.time.WebClock

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.