Package ca.odell.glazedlists.impl.sort

Examples of ca.odell.glazedlists.impl.sort.ComparableComparator


    /**
     * @see #PropertyColumnTableDescription(String, Class, int, Comparator)
     */
    public PropertyColumnTableDescription(final String id, Class forEntityType)
    {
        this(id, forEntityType, new ComparableComparator());
    }
View Full Code Here


    /**
     * @see #PropertyColumnTableDescription(String, Class, int, Comparator)
     */
    public PropertyColumnTableDescription(final String id, Class forEntityType, int numberOfColumns)
    {
        this(id, forEntityType, numberOfColumns, new ComparableComparator());
    }
View Full Code Here

TOP

Related Classes of ca.odell.glazedlists.impl.sort.ComparableComparator

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.