1 // Copyright (c) Corporation for National Research Initiatives 2 3 package org.python.compiler; 4 5 import java.io.*; 6 7 abstract class Constant { 8 public Module module; 9 public static int access = ClassFile.STATIC | ClassFile.FINAL; 10 public String name; 11 12 public abstract void get(Code c) throws IOException; 13 public abstract void put(Code c) throws IOException; 14 } 15