Package org.hisrc.jscm.codemodel.impl

Examples of org.hisrc.jscm.codemodel.impl.FunctionBodyImpl


    private final JSFunctionBody body;

    public FunctionImpl(JSCodeModel codeModel) {
      super(codeModel);
      this.name = null;
      this.body = new FunctionBodyImpl(codeModel);
    }
View Full Code Here


    public FunctionImpl(JSCodeModel codeModel, String name) {
      super(codeModel);
      Validate.notNull(name);
      this.name = name;
      this.body = new FunctionBodyImpl(codeModel);
    }
View Full Code Here

TOP

Related Classes of org.hisrc.jscm.codemodel.impl.FunctionBodyImpl

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.