| package org.apache.velocity.runtime.directive; |
| |
| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF licenses this file |
| * to you under the Apache License, Version 2.0 (the |
| * "License"); you may not use this file except in compliance |
| * with the License. You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, |
| * software distributed under the License is distributed on an |
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| * KIND, either express or implied. See the License for the |
| * specific language governing permissions and limitations |
| * under the License. |
| */ |
| |
| import java.io.IOException; |
| import java.io.Writer; |
| import java.util.Iterator; |
| import java.util.List; |
| |
| import org.apache.velocity.app.event.EventCartridge; |
| import org.apache.velocity.context.Context; |
| import org.apache.velocity.context.InternalContextAdapter; |
| import org.apache.velocity.exception.MethodInvocationException; |
| import org.apache.velocity.exception.ParseErrorException; |
| import org.apache.velocity.exception.ResourceNotFoundException; |
| import org.apache.velocity.exception.TemplateInitException; |
| import org.apache.velocity.runtime.RuntimeConstants; |
| import org.apache.velocity.runtime.RuntimeServices; |
| import org.apache.velocity.runtime.parser.node.ASTReference; |
| import org.apache.velocity.runtime.parser.node.Node; |
| import org.apache.velocity.runtime.parser.node.SimpleNode; |
| import org.apache.velocity.runtime.resource.Resource; |
| import org.apache.velocity.util.introspection.Info; |
| import org.apache.velocity.util.introspection.IntrospectionCacheData; |
| |
| /** |
| * Break directive used for interrupting foreach loops. |
| * |
| * @author <a href="mailto:wyla@removethis.sci.fi">Jarkko Viinamaki</a> |
| * @version $Id$ |
| */ |
| public class Break extends Directive |
| { |
| /** |
| * Return name of this directive. |
| * @return The name of this directive. |
| */ |
| public String getName() |
| { |
| return "break"; |
| } |
| |
| /** |
| * Return type of this directive. |
| * @return The type of this directive. |
| */ |
| public int getType() |
| { |
| return LINE; |
| } |
| |
| /** |
| * simple init - init the tree and get the elementKey from |
| * the AST |
| * @param rs |
| * @param context |
| * @param node |
| * @throws TemplateInitException |
| */ |
| public void init(RuntimeServices rs, InternalContextAdapter context, Node node) |
| throws TemplateInitException |
| { |
| super.init(rs, context, node); |
| } |
| |
| /** |
| * Break directive does not actually do any rendering. |
| * |
| * This directive throws a BreakException (RuntimeException) which |
| * signals foreach directive to break out of the loop. Note that this |
| * directive does not verify that it is being called inside a foreach |
| * loop. |
| * |
| * @param context |
| * @param writer |
| * @param node |
| * @return true if the directive rendered successfully. |
| * @throws IOException |
| * @throws MethodInvocationException |
| * @throws ResourceNotFoundException |
| * @throws ParseErrorException |
| */ |
| public boolean render(InternalContextAdapter context, |
| Writer writer, Node node) |
| throws IOException, MethodInvocationException, ResourceNotFoundException, |
| ParseErrorException |
| { |
| throw new BreakException(); |
| } |
| |
| public static class BreakException extends RuntimeException |
| { |
| |
| } |
| } |