Examples of CategoryNameComparator


Examples of com.sparc.knappsack.comparators.CategoryNameComparator

        return false;
    }

    @Override
    public List<Category> getCategoriesForUser(User user, ApplicationType deviceType, SortOrder sortOrder) {
        TreeSet<Category> categories = new TreeSet<Category>(new CategoryNameComparator());

        if (user != null && deviceType != null) {
            categories.addAll(categoryDao.getAllForUser(user, deviceType));
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.