Package org.nutz.plugins.view.smarty

Examples of org.nutz.plugins.view.smarty.SmartyView


public class NutMoreViewMaker implements ViewMaker, ViewMaker2 {

  public View make(Ioc ioc, final String type, String value) {
    if ("st".equals(type)) {
      try {
        return new SmartyView(value);
      } catch (Throwable e) {
        throw Lang.wrapThrow(e);
      }
    }
   
View Full Code Here

TOP

Related Classes of org.nutz.plugins.view.smarty.SmartyView

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.