blob: 727c2ae635ff0cac27f81ae37de6558f2015cebe [file] [log] [blame]
package org.intellij.lang.xpath.context.functions;
import org.intellij.lang.xpath.psi.XPathType;
import org.jetbrains.annotations.NotNull;
/*
* Created by IntelliJ IDEA.
* User: sweinreuter
* Date: 11.01.11
*/
public interface Function {
String getName();
@NotNull
Parameter[] getParameters();
@NotNull
XPathType getReturnType();
int getMinArity();
String buildSignature();
}