Package org.jeecgframework.core.util

Examples of org.jeecgframework.core.util.NumberComparator


        functionMap.get(function.getFunctionLevel() + 0).add(function);
      }
      // 菜单栏排序
      Collection<List<TSFunction>> c = functionMap.values();
      for (List<TSFunction> list : c) {
        Collections.sort(list, new NumberComparator());
      }
    }
    return functionMap;
  }
View Full Code Here


        functionMap.get(function.getFunctionLevel() + 0).add(function);
      }
      // 菜单栏排序
      Collection<List<TSFunction>> c = functionMap.values();
      for (List<TSFunction> list : c) {
        Collections.sort(list, new NumberComparator());
      }
    }
    //将更新前的菜单数据赋值过去
    shortcutFunctionMap = functionMap;
    return functionMap;
View Full Code Here

TOP

Related Classes of org.jeecgframework.core.util.NumberComparator

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.