Package org.nutz.lang.util

Examples of org.nutz.lang.util.SimpleContext


  /**
   * @return 一个新创建的上下文对象
   */
  public static Context context() {
    return new SimpleContext();
  }
View Full Code Here


   *            Map 对象
   *
   * @return 一个新创建的上下文对象
   */
  public static Context context(Map<String, Object> map) {
    return new SimpleContext(map);
  }
View Full Code Here

    /**
     * @return 一个新创建的上下文对象
     */
    public static Context context() {
        return new SimpleContext();
    }
View Full Code Here

     *            Map 对象
     *
     * @return 一个新创建的上下文对象
     */
    public static Context context(Map<String, Object> map) {
        return new SimpleContext(map);
    }
View Full Code Here

     * 创建一个新的上下文对象
     *
     * @return 一个新创建的上下文对象
     */
    public static Context context() {
        return new SimpleContext();
    }
View Full Code Here

     *            Map 对象
     *
     * @return 一个新创建的上下文对象
     */
    public static Context context(Map<String, Object> map) {
        return new SimpleContext(map);
    }
View Full Code Here

TOP

Related Classes of org.nutz.lang.util.SimpleContext

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.