soot.JastAddJ.CONSTANT_Fieldref_Info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot Show documentation
Show all versions of soot Show documentation
A Java Optimization Framework
package soot.JastAddJ;
import java.util.HashSet;
import java.io.File;
import java.util.*;
import beaver.*;
import java.util.ArrayList;
import java.util.zip.*;
import java.io.*;
import java.io.FileNotFoundException;
import java.util.Collection;
import soot.*;
import soot.util.*;
import soot.jimple.*;
import soot.coffi.ClassFile;
import soot.coffi.method_info;
import soot.coffi.CONSTANT_Utf8_info;
import soot.tagkit.SourceFileTag;
import soot.coffi.CoffiMethodSource;
/**
* @ast class
*
*/
public class CONSTANT_Fieldref_Info extends CONSTANT_Info {
public int class_index;
public int name_and_type_index;
public CONSTANT_Fieldref_Info(BytecodeParser parser) {
super(parser);
class_index = p.u2();
name_and_type_index = p.u2();
}
public String toString() {
return "FieldRefInfo: " + p.constantPool[class_index] + " "
+ p.constantPool[name_and_type_index];
}
}