⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 declaration.java

📁 检查Java程序漏洞
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -