KickJava   Java API By Example, From Geeks To Geeks.

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


1 // Copyright (c) Corporation for National Research Initiatives
2
package org.python.core;
3
4 /**
5  * Interface implemented by compiled modules which allow access to
6  * to the module code object.
7  */

8
9 public interface PyRunnable {
10     /**
11      * Return the modules code object.
12      */

13     abstract public PyCode getMain();
14 }
15
Popular Tags