Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/awt/AWTPermission.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1 // AWTPermission.java - AWT permissions
    2 
    3 /* Copyright (C) 2000, 2002  Free Software Foundation
     1/* AWTPermission.java -- AWT related permissions
     2   Copyright (C) 2000, 2002  Free Software Foundation
    43
    54This file is part of GNU Classpath.
     
    3837
    3938
    40 /**
    41  * @author Tom Tromey <[email protected]>
    42  * @date December 2, 2000
    43  */
    44 
    4539package java.awt;
    4640
     
    5044 * This class implements permissions for AWT.  This is a named
    5145 * permission.  No actions are defined.
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
     56
     57
     58
     59
     60
     61
     62
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
    5288 */
    5389public final class AWTPermission extends BasicPermission
    5490{
    5591  /**
     92
     93
     94
     95
     96
    5697   * Construct a AWTPermission with the given name.
    57    * @param name The permission name
     98   *
     99   * @param name the permission name
     100   * @throws NullPointerException if name is null
     101   * @throws IllegalArgumentException if name is invalid
    58102   */
    59   public AWTPermission (String name)
     103  public AWTPermission(String name)
    60104  {
    61     super (name);
     105    super(name);
    62106  }
    63107
    64108  /**
    65    * Construct a AWTPermission with the given name.
    66    * @param name The permission name
    67    * @param actions The actions; this is ignored and should be null.
     109   * Create a new permission with the specified name. The actions argument
     110   * is ignored, as AWT permissions have no actions.
     111   *
     112   * @param name the permission name
     113   * @param actions ignored
     114   * @throws NullPointerException if name is null
     115   * @throws IllegalArgumentException if name is invalid
    68116   */
    69   public AWTPermission (String name, String actions)
     117  public AWTPermission(String name, String actions)
    70118  {
    71     super (name, actions);
     119    super);
    72120  }
    73 }
     121}
Note: See TracChangeset for help on using the changeset viewer.