Source for gnu.gcj.util.UtilPermission

   1: /* GCInfo.java -- Support for creating heap dumps.
   2:    Copyright (C) 2007  Free Software Foundation
   3: 
   4:    This file is part of libgcj.
   5: 
   6:    This software is copyrighted work licensed under the terms of the
   7:    Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
   8:    details.  */
   9: 
  10: package gnu.gcj.util;
  11: 
  12: import java.security.BasicPermission;
  13: 
  14: public class UtilPermission extends BasicPermission
  15: {
  16:   public UtilPermission(String name)
  17:   {
  18:     super(name);
  19:   }
  20: }