velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/AbstractExecutor.java [54:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         throws IllegalAccessException, InvocationTargetException;

    /**
     * Tell whether the executor is alive by looking
     * at the value of the method.
     *
     * @return True if executor is alive.
     */
    public boolean isAlive()
    {
        return (method != null);
    }

    /**
     * @return The current method.
     */
    public Method getMethod()
    {
        return method;
    }

    /**
     * @param method
     * @since 1.5
     */
    protected void setMethod(final Method method)
    {
        this.method = method;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/SetExecutor.java [60:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
         throws IllegalAccessException, InvocationTargetException;

    /**
     * Tell whether the executor is alive by looking
     * at the value of the method.
     * @return True if the executor is alive.
     */
    public boolean isAlive()
    {
        return (method != null);
    }

    /**
     * @return The method to invoke.
     */
    public Method getMethod()
    {
        return method;
    }

    /**
     * @param method
     */
    protected void setMethod(final Method method)
    {
        this.method = method;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



