com.google.template.soy.javasrc.restricted
Interface SoyJavaSrcFunction

All Superinterfaces:
SoyFunction

public interface SoyJavaSrcFunction
extends SoyFunction

Interface for a Soy function implemented for the Java Source backend.

Important: This may only be used in implementing function plugins.


Method Summary
 JavaExpr computeForJavaSrc(List<JavaExpr> args)
          Computes this function on the given arguments for the Java Source backend.
 
Methods inherited from interface com.google.template.soy.shared.restricted.SoyFunction
getName, getValidArgsSizes
 

Method Detail

computeForJavaSrc

JavaExpr computeForJavaSrc(List<JavaExpr> args)
Computes this function on the given arguments for the Java Source backend.

Parameters:
args - The function arguments.
Returns:
The computed result of this function.