src.org.python.modules.jffi.JITInvoker4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython Show documentation
Show all versions of jython Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
package org.python.modules.jffi;
import org.python.core.PyObject;
abstract public class JITInvoker4 extends JITInvoker {
public JITInvoker4(com.kenai.jffi.Function function, Invoker fallbackInvoker) {
super(4, function, fallbackInvoker);
}
public final PyObject invoke() {
return invalidArity(0);
}
public final PyObject invoke(PyObject arg1) {
return invalidArity(1);
}
public final PyObject invoke(PyObject arg1, PyObject arg2) {
return invalidArity(2);
}
public final PyObject invoke(PyObject arg1, PyObject arg2, PyObject arg3) {
return invalidArity(3);
}
public final PyObject invoke(PyObject arg1, PyObject arg2, PyObject arg3, PyObject arg4, PyObject arg5) {
return invalidArity(5);
}
public final PyObject invoke(PyObject arg1, PyObject arg2, PyObject arg3, PyObject arg4, PyObject arg5, PyObject arg6) {
return invalidArity(6);
}
}