com.nedap.archie.rules.evaluation.FunctionImplementation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
tools that operate on the archie reference models and archetype object model
package com.nedap.archie.rules.evaluation;
import java.util.List;
/**
* Created by pieter.bos on 07/04/2017.
*/
public interface FunctionImplementation {
String getName();
ValueList evaluate(List arguments) throws FunctionCallException;
}