KickJava   Java API By Example, From Geeks To Geeks.

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


1 // Copyright (c) Corporation for National Research Initiatives
2

3 package org.python.core;
4
5 /**
6  * An deprecated interface that can be used if a java class
7  * want control over the class dict initialization.
8  * <p>
9  * This class is deprecated. See ClassDictInit for a replacement.
10  *
11  * @see ClassDictInit
12  */

13
14
15 public interface InitModule
16 {
17     public abstract void initModule(PyObject dict);
18 }
19
Popular Tags