com.nedap.archie.rules.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aom Show documentation
Show all versions of aom Show documentation
An OpenEHR archetype object model implementation, plus parser
package com.nedap.archie.rules;
import java.util.List;
/**
* Created by pieter.bos on 06/04/2017.
*/
public class Function extends Expression {
private String functionName;
private List arguments;
/** No argument constructor for kryo cloning and json parsing */
public Function() {
}
public Function(String functionName, List arguments) {
this.functionName = functionName;
this.arguments = arguments;
}
public String getFunctionName() {
return functionName;
}
public List getArguments() {
return arguments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy