out.write("<!--\r\n Copyright 2004 The Apache Software Foundation\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License.\r\n-->\r\n\r\n<html>\r\n <head>\r\n <title>JSP 2.0 Examples - Repeat SimpleTag Handler</title>\r\n </head>\r\n <body>\r\n <h1>JSP 2.0 Examples - Repeat SimpleTag Handler</h1>\r\n <hr>\r\n <p>This tag handler accepts a \"num\" parameter and repeats the body of the\r\n tag \"num\" times. It's a simple example, but the implementation of \r\n such a tag in JSP 2.0 is substantially simpler than the equivalent \r\n JSP 1.2-style classic tag handler.</p>\r\n");
out.write(" <p>The body of the tag is encapsulated in a \"JSP Fragment\" and passed\r\n to the tag handler, which then executes it five times, inside a \r\n for loop. The tag handler passes in the current invocation in a\r\n scoped variable called count, which can be accessed using the EL.</p>\r\n <br>\r\n <b><u>Result:</u></b><br>\r\n ");
RepeatSimpleTag _jspx_th_mytag_repeat_0 = new RepeatSimpleTag();