All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.aviator.FunctionLoader Maven / Gradle / Ivy

The newest version!
package com.googlecode.aviator;

import com.googlecode.aviator.runtime.type.AviatorFunction;

/**
 * Function loader to load function when function not found.
 *
 * @author dennis
 *
 */
public interface FunctionLoader {

  /**
   * Invoked when function not found, The implementation must returns null when function not
   * found.
   *
   * @param name function name
   */
  public AviatorFunction onFunctionNotFound(String name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy