/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang.reflect; import java.security.BasicPermission; public final class ReflectPermission extends BasicPermission { public ReflectPermission(String name) { super(name); } public ReflectPermission(String name, String actions) { super(name, actions); } }