jstlcorecatch.java

来自「RESIN 3.2 最新源码」· Java 代码 · 共 103 行

JAVA
103
字号
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Resin Open Source is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the *   Free SoftwareFoundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package com.caucho.jsp.java;import com.caucho.jsp.JspParseException;import com.caucho.vfs.WriteStream;import com.caucho.xml.QName;import java.io.IOException;public class JstlCoreCatch extends JstlNode {  private static final QName VAR = new QName("var");    private String _var;    /**   * Adds an attribute.   */  public void addAttribute(QName name, String value)    throws JspParseException  {    if (VAR.equals(name))      _var = value;    else      throw error(L.l("`{0}' is an unknown attribute for <{1}>.",                      name, getTagName()));  }  /**   * Generates the XML text representation for the tag validation.   *   * @param os write stream to the generated XML.   */  public void printXml(WriteStream os)    throws IOException  {    os.print("<c:catch");    if (_var != null)      os.print(" var=\"" + xmlText(_var) + "\"");    os.print(">");    printXmlChildren(os);    os.print("</c:catch>");  }    /**   * Generates the code for the c:catch tag.   */  public void generate(JspJavaWriter out)    throws Exception  {    String temp = "_jsp_out" + _gen.uniqueId();    out.println("javax.servlet.jsp.JspWriter " + temp + " = out;");    out.println("try {");    out.pushDepth();    generateChildren(out);    if (_var != null)      out.println("pageContext.removeAttribute(\"" + _var + "\");");          out.popDepth();    out.println("} catch (Throwable _jsp_exn) {");        out.println("  out = pageContext.setWriter(" + temp + ");");        if (_var != null)      out.println("  pageContext.setAttribute(\"" + _var + "\", _jsp_exn);");    out.println("}");  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?