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

📄 groovycodesourcepermission.java

📁 大名鼎鼎的java动态脚本语言。已经通过了sun的认证
💻 JAVA
字号:
package groovy.security;import java.security.BasicPermission;/** * Permission required to explicitly specify a codebase for a groovy script whose * codebase cannot be determined.  Typically this permission is only * required by clients that want to associate a code source with a script which * is a String or an InputStream. * * @author Steve Goetze */public class GroovyCodeSourcePermission extends BasicPermission {	public GroovyCodeSourcePermission(String name) {		super(name);	}	public GroovyCodeSourcePermission(String name, String actions) {		super(name, actions);	}}

⌨️ 快捷键说明

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