declaration.java

来自「检查Java程序漏洞」· Java 代码 · 共 31 行

JAVA
31
字号
package net.sourceforge.pmd.cpd.cppast;/** * Holds the various attributes of a declaration. This is filled up as the * declaration is parsed. */public class Declaration{   /**    * class/struct/union is indicated by CLASS.    */   boolean isClass;   /**    * Indicates if this is a typedef declaration.    */   boolean isTypedef;   /**    * Name of the declarator.    */   String name;   /**    * Scopename. By default, it is the current scope. If the name is declared    * with scope override operator, it will be set to that scope.    */   Scope scope;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?