01: // Copyright (c) Corporation for National Research Initiatives
02:
03: package org.python.compiler;
04:
05: import java.io.*;
06:
07: abstract class Constant {
08: public Module module;
09: public static int access = ClassFile.STATIC | ClassFile.FINAL;
10: public String name;
11:
12: public abstract void get(Code c) throws IOException;
13:
14: public abstract void put(Code c) throws IOException;
15: }
|