?? memberdecl.java
字號:
package AST;
import java.util.HashSet;import java.util.LinkedHashSet;import java.io.FileNotFoundException;import java.io.File;import java.util.*;import beaver.*;import java.util.ArrayList;import java.util.zip.*;import java.io.*;public abstract class MemberDecl extends BodyDecl implements Cloneable {
public void flushCache() { super.flushCache(); } @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 462 @SuppressWarnings({"unchecked", "cast"}) public boolean isConstant() { 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() { boolean isSynthetic_value = isSynthetic_compute(); return isSynthetic_value; } private boolean isSynthetic_compute() { return false; }public ASTNode rewriteTo() { return super.rewriteTo();}}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -