Package org.jitterbit.ui.widget.table

Examples of org.jitterbit.ui.widget.table.FileSizeColumn


        private String getMessageToBroadcast(JitterPack jp) {
            if (jp == null) {
                return " ";
            }
            StringBuilder sb = new StringBuilder("Size: ");
            sb.append(new FileSizeColumn(jp.getFile(), StorageSizeUnit.Kilobytes));
            String comment = jp.getDescriptor().getComment();
            if (comment != null && comment.length() > 0) {
                sb.append("; Comment: ").append(comment);
            }
            return sb.toString();
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.widget.table.FileSizeColumn

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.