Package org.zkoss.zul.api

Examples of org.zkoss.zul.api.Caption


                final SynchronizationInfo synchronizationInfo = (SynchronizationInfo) data;
                row.setValue(data);

                Groupbox groupbox = new Groupbox();
                groupbox.setClosable(true);
                Caption caption = new org.zkoss.zul.Caption();
                caption.setLabel(synchronizationInfo.getAction());
                groupbox.appendChild(caption);
                row.appendChild(groupbox);

                if (synchronizationInfo.isSuccessful()) {
                    groupbox.appendChild(new Label(_("Completed")));
View Full Code Here

TOP

Related Classes of org.zkoss.zul.api.Caption

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.