KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > python > core > PyFunctionTable


1 // Copyright (c) Corporation for National Research Initiatives
2
package org.python.core;
3
4 /**
5  * An entry point for class that implements several function calls.
6  * <P>
7  * Used together with the PyTableCode class.
8  *
9  * @see PyTableCode
10  */

11
12 public abstract class PyFunctionTable {
13     abstract public PyObject call_function(int index, PyFrame frame);
14 }
15
Popular Tags