Package net.yanhl.tree

Examples of net.yanhl.tree.Tree


    try {
      currentUserName = UserUtil.getCurrentUserName(request);
      String currentUserId = UserUtil.getCurrentUserId(request);
      String parentId = StringUtil.getValue(request, "gid");
      String basePath = StringUtil.getValue(request, "basePath");
      Tree tree = new Tree(currentUserId, basePath, parentId);
      String treeResult = treeManager.getUserTree(tree);
      print(response, treeResult);
    } catch (Exception e) {
      e.printStackTrace();
      log.error(currentUserName + ">获得借入/借出人员列表" + user + "出错\n\t" + e.getMessage());
View Full Code Here


    try {
      currentUserName = UserUtil.getCurrentUserName(request);
      String currentUserId = UserUtil.getCurrentUserId(request);
      String parentId = StringUtil.getValue(request, "gid");
      String basePath = StringUtil.getValue(request, "basePath");
      Tree tree = new Tree(currentUserId, basePath, parentId);
      String treeResult = treeManager.getGroupTree(tree);
      print(response, treeResult);
    } catch (Exception e) {
      e.printStackTrace();
      log.error(currentUserName + ">获得借入/借出人员列表" + user + "出错\n\t" + e.getMessage());
View Full Code Here

TOP

Related Classes of net.yanhl.tree.Tree

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.