package soot.JastAddJ; import java.util.HashSet;import java.util.LinkedHashSet;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; public abstract class MemberDecl extends BodyDecl implements Cloneable { public void flushCache() { super.flushCache(); } public void flushCollectionCache() { super.flushCollectionCache(); } @SuppressWarnings({"unchecked", "cast"}) public MemberDecl clone() throws CloneNotSupportedException { MemberDecl node = (MemberDecl)super.clone(); node.in$Circle(false); node.is$Final(false); return node; } // Declared in Modifiers.jrag at line 190 public void checkModifiers() { if(!isSynthetic()) { super.checkModifiers(); if(isStatic() && hostType().isInnerClass() && !isConstant()) error("*** Inner classes may not declare static members, unless they are compile-time constant fields"); } } // Declared in java.ast at line 3 // Declared in java.ast line 74 public MemberDecl() { super(); } // Declared in java.ast at line 9 protected int numChildren() { return 0; } // Declared in java.ast at line 12 public boolean mayHaveRewrite() { return false; } // Declared in Modifiers.jrag at line 220 @SuppressWarnings({"unchecked", "cast"}) public abstract boolean isStatic(); // Declared in ConstantExpression.jrag at line 478 @SuppressWarnings({"unchecked", "cast"}) public boolean isConstant() { ASTNode$State state = state(); boolean isConstant_value = isConstant_compute(); return isConstant_value; } private boolean isConstant_compute() { return false; } // Declared in Modifiers.jrag at line 212 @SuppressWarnings({"unchecked", "cast"}) public boolean isSynthetic() { ASTNode$State state = state(); boolean isSynthetic_value = isSynthetic_compute(); return isSynthetic_value; } private boolean isSynthetic_compute() { return false; } public ASTNode rewriteTo() { return super.rewriteTo(); } }