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

info.bliki.extensions.scribunto.engine.ScribuntoModule Maven / Gradle / Ivy

The newest version!
package info.bliki.extensions.scribunto.engine;

import info.bliki.extensions.scribunto.ScribuntoException;
import info.bliki.extensions.scribunto.template.Frame;
import info.bliki.wiki.filter.ParsedPageName;

public interface ScribuntoModule {
    /**
     * Invoke the function with the specified name.
     *
     * @return string
     */
    String invoke(String functionName, Frame frame) throws ScribuntoException;

    ParsedPageName pageName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy