21 lines
251 B
Java
21 lines
251 B
Java
|
package test;
|
||
|
|
||
|
|
||
|
|
||
|
import java.io.FileOutputStream;
|
||
|
import CPInfo;
|
||
|
import ClassFile;
|
||
|
|
||
|
|
||
|
|
||
|
public class X extends CPInfo
|
||
|
{
|
||
|
byte tag;
|
||
|
short class_index;
|
||
|
short name_and_type_index;
|
||
|
|
||
|
public void codegen(ClassFile classfile, FileOutputStream f)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|