📄 astdirective.java
字号:
package org.apache.velocity.runtime.parser.node;
/*
* Copyright 2000-2001,2004 The Apache Software Foundation.
*
* Licensed 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.context.InternalContextAdapter;
import org.apache.velocity.runtime.directive.Directive;
import org.apache.velocity.runtime.parser.Parser;
import org.apache.velocity.exception.MethodInvocationException;
import org.apache.velocity.exception.ParseErrorException;
import org.apache.velocity.exception.ResourceNotFoundException;
/**
* This class is responsible for handling the pluggable
* directives in VTL. ex. #foreach()
*
* Please look at the Parser.jjt file which is
* what controls the generation of this class.
*
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
* @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
* @author <a href="mailto:kav@kav.dk">Kasper Nielsen</a>
* @version $Id: ASTDirective.java,v 1.21.4.1 2004/03/03 23:22:58 geirm Exp $
*/
public class ASTDirective extends SimpleNode
{
private Directive directive;
private String directiveName = "";
private boolean isDirective;
public ASTDirective(int id)
{
super(id);
}
public ASTDirective(Parser p, int id)
{
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(ParserVisitor visitor, Object data)
{
return visitor.visit(this, data);
}
public Object init( InternalContextAdapter context, Object data)
throws Exception
{
super.init( context, data );
/*
* only do things that are not context dependant
*/
if (parser.isDirective( directiveName ))
{
isDirective = true;
directive = (Directive) parser.getDirective( directiveName )
.getClass().newInstance();
directive.init(rsvc, context,this);
directive.setLocation( getLine(), getColumn() );
}
else if (rsvc.isVelocimacro( directiveName, context.getCurrentTemplateName() ))
{
/*
* we seem to be a Velocimacro.
*/
isDirective = true;
directive = (Directive) rsvc.getVelocimacro( directiveName, context.getCurrentTemplateName() );
directive.init( rsvc, context, this );
directive.setLocation( getLine(), getColumn() );
}
else
{
isDirective = false;
}
return data;
}
public boolean render( InternalContextAdapter context, Writer writer)
throws IOException,MethodInvocationException, ResourceNotFoundException, ParseErrorException
{
/*
* normal processing
*/
if (isDirective)
{
directive.render(context, writer, this);
}
else
{
writer.write( "#");
writer.write( directiveName );
}
return true;
}
/**
* Sets the directive name. Used by the parser. This keeps us from having to
* dig it out of the token stream and gives the parse the change to override.
*/
public void setDirectiveName( String str )
{
directiveName = str;
return;
}
/**
* Gets the name of this directive.
*/
public String getDirectiveName()
{
return directiveName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -