org.apache.velocity.runtime.directive.Directive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of velocity Show documentation
Show all versions of velocity Show documentation
Apache Velocity is a general purpose template engine.
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.Writer;
import java.io.IOException;
import org.apache.velocity.runtime.RuntimeServices;
import org.apache.velocity.context.InternalContextAdapter;
import org.apache.velocity.runtime.parser.node.Node;
import org.apache.velocity.exception.MethodInvocationException;
import org.apache.velocity.exception.ParseErrorException;
import org.apache.velocity.exception.ResourceNotFoundException;
import org.apache.velocity.exception.TemplateInitException;
/**
* Base class for all directives used in Velocity.
*
* @author Jason van Zyl
* @version $Id: Directive.java 724825 2008-12-09 18:56:06Z nbubna $
*/
public abstract class Directive implements DirectiveConstants, Cloneable
{
private int line = 0;
private int column = 0;
private String templateName;
/**
*
*/
protected RuntimeServices rsvc = null;
/**
* Return the name of this directive.
* @return The name of this directive.
*/
public abstract String getName();
/**
* Get the directive type BLOCK/LINE.
* @return The directive type BLOCK/LINE.
*/
public abstract int getType();
/**
* Allows the template location to be set.
* @param line
* @param column
*/
public void setLocation( int line, int column )
{
this.line = line;
this.column = column;
}
/**
* Allows the template location to be set.
* @param line
* @param column
*/
public void setLocation(int line, int column, String templateName)
{
setLocation(line, column);
this.templateName = templateName;
}
/**
* for log msg purposes
* @return The current line for log msg purposes.
*/
public int getLine()
{
return line;
}
/**
* for log msg purposes
* @return The current column for log msg purposes.
*/
public int getColumn()
{
return column;
}
/**
* @return The template file name this directive was defined in, or null if not
* defined in a file.
*/
public String getTemplateName()
{
return templateName;
}
/**
* How this directive is to be initialized.
* @param rs
* @param context
* @param node
* @throws TemplateInitException
*/
public void init( RuntimeServices rs, InternalContextAdapter context,
Node node)
throws TemplateInitException
{
rsvc = rs;
// int i, k = node.jjtGetNumChildren();
//for (i = 0; i < k; i++)
// node.jjtGetChild(i).init(context, rs);
}
/**
* How this directive is to be rendered
* @param context
* @param writer
* @param node
* @return True if the directive rendered successfully.
* @throws IOException
* @throws ResourceNotFoundException
* @throws ParseErrorException
* @throws MethodInvocationException
*/
public abstract boolean render( InternalContextAdapter context,
Writer writer, Node node )
throws IOException, ResourceNotFoundException, ParseErrorException,
MethodInvocationException;
}