Package com.dianping.cat.configuration.app.entity

Examples of com.dianping.cat.configuration.app.entity.Code


        title = platform.getName();
      }
      break;
    case CODE:
      Map<Integer, Code> codes = m_manager.queryCodeByCommand(command);
      Code code = null;
      keyValue = data.getCode();

      if (codes != null && (code = codes.get(keyValue)) != null) {
        title = code.getName();
      }
      break;
    default:
      throw new RuntimeException("Unrecognized groupby field: " + field);
    }
View Full Code Here

TOP

Related Classes of com.dianping.cat.configuration.app.entity.Code

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.