Package org.jitterbit.integration.activity.ui.log

Examples of org.jitterbit.integration.activity.ui.log.SortStatus


        if (sortKeys.isEmpty()) {
            return null;
        }
        SortKey key = sortKeys.get(0);
        OperationLogTableColumn column = treeModel.getColumnDescriptor(key.getColumn());
        return new SortStatus(column, key.getSortOrder());
    }
View Full Code Here


    private Comparator<OperationLogEntry> createComparator() {
        SortKey key = sortKeys.get(0);
        int columnIndex = key.getColumn();
        OperationLogTableColumn column = treeModel.getColumnDescriptor(columnIndex);
        SortStatus sortStatus = new SortStatus(column, key.getSortOrder());
        Comparator<OperationLogEntry> cmp = SortStatusTranslator.toComparator(sortStatus);
        return cmp;
    }
View Full Code Here

    /**
     * Returns a <code>Comparator</code> for sorting the top-level log entries in the display. A
     * top-level entry is a log entry that does not have a parent.
     */
    public final Comparator<OperationLogEntry> getTopLevelOrder() {
        SortStatus s = getSortStatus();
        return s == null ? null : SortStatusTranslator.toComparator(s);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.activity.ui.log.SortStatus

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.