javax.servlet.jsp.tagext.VariableInfo#AT_BEGIN源码实例Demo

下面列出了javax.servlet.jsp.tagext.VariableInfo#AT_BEGIN 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: Tomcat8-Source-Read   文件: Node.java
public List<Object> getScriptingVars(int scope) {
    List<Object> vec = null;

    switch (scope) {
    case VariableInfo.AT_BEGIN:
        vec = this.atBeginScriptingVars;
        break;
    case VariableInfo.AT_END:
        vec = this.atEndScriptingVars;
        break;
    case VariableInfo.NESTED:
        vec = this.nestedScriptingVars;
        break;
    }

    return vec;
}
 
源代码2 项目: Tomcat7.0.67   文件: Node.java
public List<Object> getScriptingVars(int scope) {
    List<Object> vec = null;

    switch (scope) {
    case VariableInfo.AT_BEGIN:
        vec = this.atBeginScriptingVars;
        break;
    case VariableInfo.AT_END:
        vec = this.atEndScriptingVars;
        break;
    case VariableInfo.NESTED:
        vec = this.nestedScriptingVars;
        break;
    }

    return vec;
}
 
源代码3 项目: Tomcat8-Source-Read   文件: TldRuleSet.java
public void setScope(String scopeName) {
    switch (scopeName) {
        case "NESTED":
            scope = VariableInfo.NESTED;
            break;
        case "AT_BEGIN":
            scope = VariableInfo.AT_BEGIN;
            break;
        case "AT_END":
            scope = VariableInfo.AT_END;
            break;
    }
}
 
源代码4 项目: Tomcat8-Source-Read   文件: Node.java
public void setScriptingVars(List<Object> vec, int scope) {
    switch (scope) {
    case VariableInfo.AT_BEGIN:
        this.atBeginScriptingVars = vec;
        break;
    case VariableInfo.AT_END:
        this.atEndScriptingVars = vec;
        break;
    case VariableInfo.NESTED:
        this.nestedScriptingVars = vec;
        break;
    }
}
 
源代码5 项目: portals-pluto   文件: BaseURLTag.java
public VariableInfo[] getVariableInfo(TagData tagData) {
    VariableInfo vi[] = null;
    String var = tagData.getAttributeString("var");
    if (var != null) {
        vi = new VariableInfo[1];
        vi[0] =
        	new VariableInfo(var, "java.lang.String", true,
                         VariableInfo.AT_BEGIN);
    }
    return vi;
}
 
源代码6 项目: Tomcat7.0.67   文件: JspContextWrapper.java
/**
 * Copies the variables of the given scope from the virtual page scope of
 * this JSP context wrapper to the page scope of the invoking JSP context.
 * 
 * @param scope
 *            variable scope (one of NESTED, AT_BEGIN, or AT_END)
 */
private void copyTagToPageScope(int scope) {
    Iterator<String> iter = null;

    switch (scope) {
    case VariableInfo.NESTED:
        if (nestedVars != null) {
            iter = nestedVars.iterator();
        }
        break;
    case VariableInfo.AT_BEGIN:
        if (atBeginVars != null) {
            iter = atBeginVars.iterator();
        }
        break;
    case VariableInfo.AT_END:
        if (atEndVars != null) {
            iter = atEndVars.iterator();
        }
        break;
    }

    while ((iter != null) && iter.hasNext()) {
        String varName = iter.next();
        Object obj = getAttribute(varName);
        varName = findAlias(varName);
        if (obj != null) {
            invokingJspCtxt.setAttribute(varName, obj);
        } else {
            invokingJspCtxt.removeAttribute(varName, PAGE_SCOPE);
        }
    }
}
 
源代码7 项目: Tomcat7.0.67   文件: Node.java
public void setScriptingVars(List<Object> vec, int scope) {
    switch (scope) {
    case VariableInfo.AT_BEGIN:
        this.atBeginScriptingVars = vec;
        break;
    case VariableInfo.AT_END:
        this.atEndScriptingVars = vec;
        break;
    case VariableInfo.NESTED:
        this.nestedScriptingVars = vec;
        break;
    }
}
 
源代码8 项目: tomcatsrc   文件: JspContextWrapper.java
/**
 * Copies the variables of the given scope from the virtual page scope of
 * this JSP context wrapper to the page scope of the invoking JSP context.
 * 
 * @param scope
 *            variable scope (one of NESTED, AT_BEGIN, or AT_END)
 */
private void copyTagToPageScope(int scope) {
    Iterator<String> iter = null;

    switch (scope) {
    case VariableInfo.NESTED:
        if (nestedVars != null) {
            iter = nestedVars.iterator();
        }
        break;
    case VariableInfo.AT_BEGIN:
        if (atBeginVars != null) {
            iter = atBeginVars.iterator();
        }
        break;
    case VariableInfo.AT_END:
        if (atEndVars != null) {
            iter = atEndVars.iterator();
        }
        break;
    }

    while ((iter != null) && iter.hasNext()) {
        String varName = iter.next();
        Object obj = getAttribute(varName);
        varName = findAlias(varName);
        if (obj != null) {
            invokingJspCtxt.setAttribute(varName, obj);
        } else {
            invokingJspCtxt.removeAttribute(varName, PAGE_SCOPE);
        }
    }
}
 
源代码9 项目: tomcatsrc   文件: Node.java
public void setScriptingVars(List<Object> vec, int scope) {
    switch (scope) {
    case VariableInfo.AT_BEGIN:
        this.atBeginScriptingVars = vec;
        break;
    case VariableInfo.AT_END:
        this.atEndScriptingVars = vec;
        break;
    case VariableInfo.NESTED:
        this.nestedScriptingVars = vec;
        break;
    }
}
 
源代码10 项目: packagedrone   文件: JspContextWrapper.java
/**
    * Copies the variables of the given scope from the virtual page scope of
    * this JSP context wrapper to the page scope of the invoking JSP context.
    *
    * @param scope variable scope (one of NESTED, AT_BEGIN, or AT_END)
    */
   private void copyTagToPageScope(int scope) {
Iterator<String> iter = null;

switch (scope) {
case VariableInfo.NESTED:
    if (nestedVars != null) {
	iter = nestedVars.iterator();
    }
    break;
case VariableInfo.AT_BEGIN:
    if (atBeginVars != null) {
	iter = atBeginVars.iterator();
    }
    break;
case VariableInfo.AT_END:
    if (atEndVars != null) {
	iter = atEndVars.iterator();
    }
    break;
}

while ((iter != null) && iter.hasNext()) {
    String varName = iter.next();
    Object obj = getAttribute(varName);
    varName = findAlias(varName);
    if (obj != null) {
	invokingJspCtxt.setAttribute(varName, obj);
    } else {
	invokingJspCtxt.removeAttribute(varName, PAGE_SCOPE);
    }
}
   }
 
源代码11 项目: packagedrone   文件: Node.java
public void setScriptingVars(ArrayList<Object> vec, int scope) {
    switch (scope) {
    case VariableInfo.AT_BEGIN:
	this.atBeginScriptingVars = vec;
	break;
    case VariableInfo.AT_END:
	this.atEndScriptingVars = vec;
	break;
    case VariableInfo.NESTED:
	this.nestedScriptingVars = vec;
	break;
    }
}
 
源代码12 项目: packagedrone   文件: Node.java
public ArrayList<Object> getScriptingVars(int scope) {
    switch (scope) {
    case VariableInfo.AT_BEGIN:
	return this.atBeginScriptingVars;
    case VariableInfo.AT_END:
	return this.atEndScriptingVars;
    case VariableInfo.NESTED:
	return this.nestedScriptingVars;
    }
    return null;
}
 
源代码13 项目: unitime   文件: SessionContextTei.java
public VariableInfo [] getVariableInfo(TagData data) {
	return new VariableInfo[] {
		new VariableInfo("sessionContext", SessionContext.class.getName(), true, VariableInfo.AT_BEGIN)
	};
}
 
源代码14 项目: Tomcat8-Source-Read   文件: Generator.java
private void generateSetJspContext(TagInfo tagInfo) {

        boolean nestedSeen = false;
        boolean atBeginSeen = false;
        boolean atEndSeen = false;

        // Determine if there are any aliases
        boolean aliasSeen = false;
        TagVariableInfo[] tagVars = tagInfo.getTagVariableInfos();
        for (int i = 0; i < tagVars.length; i++) {
            if (tagVars[i].getNameFromAttribute() != null
                    && tagVars[i].getNameGiven() != null) {
                aliasSeen = true;
                break;
            }
        }

        if (aliasSeen) {
            out.printil("public void setJspContext(javax.servlet.jsp.JspContext ctx, java.util.Map aliasMap) {");
        } else {
            out.printil("public void setJspContext(javax.servlet.jsp.JspContext ctx) {");
        }
        out.pushIndent();
        out.printil("super.setJspContext(ctx);");
        out.printil("java.util.ArrayList _jspx_nested = null;");
        out.printil("java.util.ArrayList _jspx_at_begin = null;");
        out.printil("java.util.ArrayList _jspx_at_end = null;");

        for (int i = 0; i < tagVars.length; i++) {

            switch (tagVars[i].getScope()) {
            case VariableInfo.NESTED:
                if (!nestedSeen) {
                    out.printil("_jspx_nested = new java.util.ArrayList();");
                    nestedSeen = true;
                }
                out.printin("_jspx_nested.add(");
                break;

            case VariableInfo.AT_BEGIN:
                if (!atBeginSeen) {
                    out.printil("_jspx_at_begin = new java.util.ArrayList();");
                    atBeginSeen = true;
                }
                out.printin("_jspx_at_begin.add(");
                break;

            case VariableInfo.AT_END:
                if (!atEndSeen) {
                    out.printil("_jspx_at_end = new java.util.ArrayList();");
                    atEndSeen = true;
                }
                out.printin("_jspx_at_end.add(");
                break;
            } // switch

            out.print(quote(tagVars[i].getNameGiven()));
            out.println(");");
        }
        if (aliasSeen) {
            out.printil("this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(this, ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, aliasMap);");
        } else {
            out.printil("this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(this, ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, null);");
        }
        out.popIndent();
        out.printil("}");
        out.println();
        out.printil("public javax.servlet.jsp.JspContext getJspContext() {");
        out.pushIndent();
        out.printil("return this.jspContext;");
        out.popIndent();
        out.printil("}");
    }
 
源代码15 项目: Tomcat7.0.67   文件: Generator.java
private void generateSetJspContext(TagInfo tagInfo) {

        boolean nestedSeen = false;
        boolean atBeginSeen = false;
        boolean atEndSeen = false;

        // Determine if there are any aliases
        boolean aliasSeen = false;
        TagVariableInfo[] tagVars = tagInfo.getTagVariableInfos();
        for (int i = 0; i < tagVars.length; i++) {
            if (tagVars[i].getNameFromAttribute() != null
                    && tagVars[i].getNameGiven() != null) {
                aliasSeen = true;
                break;
            }
        }

        if (aliasSeen) {
            out.printil("public void setJspContext(javax.servlet.jsp.JspContext ctx, java.util.Map aliasMap) {");
        } else {
            out.printil("public void setJspContext(javax.servlet.jsp.JspContext ctx) {");
        }
        out.pushIndent();
        out.printil("super.setJspContext(ctx);");
        out.printil("java.util.ArrayList _jspx_nested = null;");
        out.printil("java.util.ArrayList _jspx_at_begin = null;");
        out.printil("java.util.ArrayList _jspx_at_end = null;");

        for (int i = 0; i < tagVars.length; i++) {

            switch (tagVars[i].getScope()) {
            case VariableInfo.NESTED:
                if (!nestedSeen) {
                    out.printil("_jspx_nested = new java.util.ArrayList();");
                    nestedSeen = true;
                }
                out.printin("_jspx_nested.add(");
                break;

            case VariableInfo.AT_BEGIN:
                if (!atBeginSeen) {
                    out.printil("_jspx_at_begin = new java.util.ArrayList();");
                    atBeginSeen = true;
                }
                out.printin("_jspx_at_begin.add(");
                break;

            case VariableInfo.AT_END:
                if (!atEndSeen) {
                    out.printil("_jspx_at_end = new java.util.ArrayList();");
                    atEndSeen = true;
                }
                out.printin("_jspx_at_end.add(");
                break;
            } // switch

            out.print(quote(tagVars[i].getNameGiven()));
            out.println(");");
        }
        if (aliasSeen) {
            out.printil("this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, aliasMap);");
        } else {
            out.printil("this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, null);");
        }
        out.popIndent();
        out.printil("}");
        out.println();
        out.printil("public javax.servlet.jsp.JspContext getJspContext() {");
        out.pushIndent();
        out.printil("return this.jspContext;");
        out.popIndent();
        out.printil("}");
    }
 
源代码16 项目: Tomcat7.0.67   文件: TagFileProcessor.java
@Override
public void visit(Node.VariableDirective n) throws JasperException {

    JspUtil.checkAttributes("Variable directive", n,
            variableDirectiveAttrs, err);

    String nameGiven = n.getAttributeValue("name-given");
    String nameFromAttribute = n
            .getAttributeValue("name-from-attribute");
    if (nameGiven == null && nameFromAttribute == null) {
        err.jspError("jsp.error.variable.either.name");
    }

    if (nameGiven != null && nameFromAttribute != null) {
        err.jspError("jsp.error.variable.both.name");
    }

    String alias = n.getAttributeValue("alias");
    if (nameFromAttribute != null && alias == null
            || nameFromAttribute == null && alias != null) {
        err.jspError("jsp.error.variable.alias");
    }

    String className = n.getAttributeValue("variable-class");
    if (className == null)
        className = "java.lang.String";

    String declareStr = n.getAttributeValue("declare");
    boolean declare = true;
    if (declareStr != null)
        declare = JspUtil.booleanValue(declareStr);

    int scope = VariableInfo.NESTED;
    String scopeStr = n.getAttributeValue("scope");
    if (scopeStr != null) {
        if ("NESTED".equals(scopeStr)) {
            // Already the default
        } else if ("AT_BEGIN".equals(scopeStr)) {
            scope = VariableInfo.AT_BEGIN;
        } else if ("AT_END".equals(scopeStr)) {
            scope = VariableInfo.AT_END;
        }
    }

    if (nameFromAttribute != null) {
        /*
         * An alias has been specified. We use 'nameGiven' to hold the
         * value of the alias, and 'nameFromAttribute' to hold the name
         * of the attribute whose value (at invocation-time) denotes the
         * name of the variable that is being aliased
         */
        nameGiven = alias;
        checkUniqueName(nameFromAttribute, VAR_NAME_FROM, n);
        checkUniqueName(alias, VAR_ALIAS, n);
    } else {
        // name-given specified
        checkUniqueName(nameGiven, VAR_NAME_GIVEN, n);
    }

    variableVector.addElement(new TagVariableInfo(nameGiven,
            nameFromAttribute, className, declare, scope));
}
 
源代码17 项目: packagedrone   文件: TagFileProcessor.java
public void visit(Node.VariableDirective n) throws JasperException {

            JspUtil.checkAttributes("Variable directive", n,
                                    variableDirectiveAttrs, err);

            String nameGiven = n.getAttributeValue("name-given");
            String nameFromAttribute = n.getAttributeValue("name-from-attribute");
            if (nameGiven == null && nameFromAttribute == null) {
                err.jspError("jsp.error.variable.either.name");
            }

            if (nameGiven != null && nameFromAttribute != null) {
                err.jspError("jsp.error.variable.both.name");
            }

            String alias = n.getAttributeValue("alias");
            if (nameFromAttribute != null && alias == null ||
                nameFromAttribute == null && alias != null) {
                err.jspError("jsp.error.variable.alias");
            }

            String className = n.getAttributeValue("variable-class");
            if (className == null)
                className = "java.lang.String";

            String declareStr = n.getAttributeValue("declare");
            boolean declare = true;
            if (declareStr != null)
                declare = JspUtil.booleanValue(declareStr);

            int scope = VariableInfo.NESTED;
            String scopeStr = n.getAttributeValue("scope");
            if (scopeStr != null) {
                if ("NESTED".equals(scopeStr)) {
                    // Already the default
                } else if ("AT_BEGIN".equals(scopeStr)) {
                    scope = VariableInfo.AT_BEGIN;
                } else if ("AT_END".equals(scopeStr)) {
                    scope = VariableInfo.AT_END;
                }
            }

            if (nameFromAttribute != null) {
                /*
		 * An alias has been specified. We use 'nameGiven' to hold the
		 * value of the alias, and 'nameFromAttribute' to hold the 
		 * name of the attribute whose value (at invocation-time)
		 * denotes the name of the variable that is being aliased
		 */
                nameGiven = alias;
                checkUniqueName(nameFromAttribute, Name.VAR_NAME_FROM, n);
                checkUniqueName(alias, Name.VAR_ALIAS, n);
            }
            else {
                // name-given specified
                checkUniqueName(nameGiven, Name.VAR_NAME_GIVEN, n);
            }
                
            variableVector.add(new TagVariableInfo(
                                                nameGiven,
                                                nameFromAttribute,
                                                className,
                                                declare,
                                                scope));
        }
 
源代码18 项目: tomcatsrc   文件: Generator.java
private void generateSetJspContext(TagInfo tagInfo) {

        boolean nestedSeen = false;
        boolean atBeginSeen = false;
        boolean atEndSeen = false;

        // Determine if there are any aliases
        boolean aliasSeen = false;
        TagVariableInfo[] tagVars = tagInfo.getTagVariableInfos();
        for (int i = 0; i < tagVars.length; i++) {
            if (tagVars[i].getNameFromAttribute() != null
                    && tagVars[i].getNameGiven() != null) {
                aliasSeen = true;
                break;
            }
        }

        if (aliasSeen) {
            out.printil("public void setJspContext(javax.servlet.jsp.JspContext ctx, java.util.Map aliasMap) {");
        } else {
            out.printil("public void setJspContext(javax.servlet.jsp.JspContext ctx) {");
        }
        out.pushIndent();
        out.printil("super.setJspContext(ctx);");
        out.printil("java.util.ArrayList _jspx_nested = null;");
        out.printil("java.util.ArrayList _jspx_at_begin = null;");
        out.printil("java.util.ArrayList _jspx_at_end = null;");

        for (int i = 0; i < tagVars.length; i++) {

            switch (tagVars[i].getScope()) {
            case VariableInfo.NESTED:
                if (!nestedSeen) {
                    out.printil("_jspx_nested = new java.util.ArrayList();");
                    nestedSeen = true;
                }
                out.printin("_jspx_nested.add(");
                break;

            case VariableInfo.AT_BEGIN:
                if (!atBeginSeen) {
                    out.printil("_jspx_at_begin = new java.util.ArrayList();");
                    atBeginSeen = true;
                }
                out.printin("_jspx_at_begin.add(");
                break;

            case VariableInfo.AT_END:
                if (!atEndSeen) {
                    out.printil("_jspx_at_end = new java.util.ArrayList();");
                    atEndSeen = true;
                }
                out.printin("_jspx_at_end.add(");
                break;
            } // switch

            out.print(quote(tagVars[i].getNameGiven()));
            out.println(");");
        }
        if (aliasSeen) {
            out.printil("this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, aliasMap);");
        } else {
            out.printil("this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, null);");
        }
        out.popIndent();
        out.printil("}");
        out.println();
        out.printil("public javax.servlet.jsp.JspContext getJspContext() {");
        out.pushIndent();
        out.printil("return this.jspContext;");
        out.popIndent();
        out.printil("}");
    }
 
源代码19 项目: tomcatsrc   文件: TagFileProcessor.java
@Override
public void visit(Node.VariableDirective n) throws JasperException {

    JspUtil.checkAttributes("Variable directive", n,
            variableDirectiveAttrs, err);

    String nameGiven = n.getAttributeValue("name-given");
    String nameFromAttribute = n
            .getAttributeValue("name-from-attribute");
    if (nameGiven == null && nameFromAttribute == null) {
        err.jspError("jsp.error.variable.either.name");
    }

    if (nameGiven != null && nameFromAttribute != null) {
        err.jspError("jsp.error.variable.both.name");
    }

    String alias = n.getAttributeValue("alias");
    if (nameFromAttribute != null && alias == null
            || nameFromAttribute == null && alias != null) {
        err.jspError("jsp.error.variable.alias");
    }

    String className = n.getAttributeValue("variable-class");
    if (className == null)
        className = "java.lang.String";

    String declareStr = n.getAttributeValue("declare");
    boolean declare = true;
    if (declareStr != null)
        declare = JspUtil.booleanValue(declareStr);

    int scope = VariableInfo.NESTED;
    String scopeStr = n.getAttributeValue("scope");
    if (scopeStr != null) {
        if ("NESTED".equals(scopeStr)) {
            // Already the default
        } else if ("AT_BEGIN".equals(scopeStr)) {
            scope = VariableInfo.AT_BEGIN;
        } else if ("AT_END".equals(scopeStr)) {
            scope = VariableInfo.AT_END;
        }
    }

    if (nameFromAttribute != null) {
        /*
         * An alias has been specified. We use 'nameGiven' to hold the
         * value of the alias, and 'nameFromAttribute' to hold the name
         * of the attribute whose value (at invocation-time) denotes the
         * name of the variable that is being aliased
         */
        nameGiven = alias;
        checkUniqueName(nameFromAttribute, VAR_NAME_FROM, n);
        checkUniqueName(alias, VAR_ALIAS, n);
    } else {
        // name-given specified
        checkUniqueName(nameGiven, VAR_NAME_GIVEN, n);
    }

    variableVector.addElement(new TagVariableInfo(nameGiven,
            nameFromAttribute, className, declare, scope));
}
 
源代码20 项目: packagedrone   文件: Generator.java
private void generateSetJspContext(TagInfo tagInfo) {

        boolean nestedSeen = false;
        boolean atBeginSeen = false;
        boolean atEndSeen = false;

        // Determine if there are any aliases
        boolean aliasSeen = false;
        TagVariableInfo[] tagVars = tagInfo.getTagVariableInfos();
        for (int i = 0; i < tagVars.length; i++) {
            if (tagVars[i].getNameFromAttribute() != null
                && tagVars[i].getNameGiven() != null) {
                aliasSeen = true;
                break;
            }
        }

        if (aliasSeen) {
            out.printil(
                "public void setJspContext(JspContext ctx, java.util.Map aliasMap) {");
        } else {
            out.printil("public void setJspContext(JspContext ctx) {");
        }
        out.pushIndent();
        out.printil("super.setJspContext(ctx);");
        out.printil("java.util.ArrayList<String> _jspx_nested = null;");
        out.printil("java.util.ArrayList<String> _jspx_at_begin = null;");
        out.printil("java.util.ArrayList<String> _jspx_at_end = null;");

        for (int i = 0; i < tagVars.length; i++) {

            switch (tagVars[i].getScope()) {
                case VariableInfo.NESTED :
                    if (!nestedSeen) {
                        out.printil(
                            "_jspx_nested = new java.util.ArrayList<String>();");
                        nestedSeen = true;
                    }
                    out.printin("_jspx_nested.add(");
                    break;

                case VariableInfo.AT_BEGIN :
                    if (!atBeginSeen) {
                        out.printil(
                            "_jspx_at_begin = new java.util.ArrayList<String>();");
                        atBeginSeen = true;
                    }
                    out.printin("_jspx_at_begin.add(");
                    break;

                case VariableInfo.AT_END :
                    if (!atEndSeen) {
                        out.printil(
                            "_jspx_at_end = new java.util.ArrayList<String>();");
                        atEndSeen = true;
                    }
                    out.printin("_jspx_at_end.add(");
                    break;
            } // switch

            out.print(quote(tagVars[i].getNameGiven()));
            out.println(");");
        }
        if (aliasSeen) {
            out.printil(
                "this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, aliasMap);");
        } else {
            out.printil(
                "this.jspContext = new org.apache.jasper.runtime.JspContextWrapper(ctx, _jspx_nested, _jspx_at_begin, _jspx_at_end, null);");
        }
        out.popIndent();
        out.printil("}");
        out.println();
        out.printil("public JspContext getJspContext() {");
        out.pushIndent();
        out.printil("return this.jspContext;");
        out.popIndent();
        out.printil("}");
    }