jdk/src/share/classes/sun/security/tools/policytool/PolicyTool.java
changeset 20754 3d7b2fafc34b
parent 17692 685c0741cfbb
child 20787 ab071ce90368
equal deleted inserted replaced
20753:95a52f518b5a 20754:3d7b2fafc34b
    75     // set to true if policy modified.
    75     // set to true if policy modified.
    76     // this way upon exit we know if to ask the user to save changes
    76     // this way upon exit we know if to ask the user to save changes
    77     boolean modified = false;
    77     boolean modified = false;
    78 
    78 
    79     private static final boolean testing = false;
    79     private static final boolean testing = false;
    80     private static final Class[] TWOPARAMS = { String.class, String.class };
    80     private static final Class<?>[] TWOPARAMS = { String.class, String.class };
    81     private static final Class[] ONEPARAMS = { String.class };
    81     private static final Class<?>[] ONEPARAMS = { String.class };
    82     private static final Class[] NOPARAMS  = {};
    82     private static final Class<?>[] NOPARAMS  = {};
    83     /*
    83     /*
    84      * All of the policy entries are read in from the
    84      * All of the policy entries are read in from the
    85      * policy file and stored here.  Updates to the policy entries
    85      * policy file and stored here.  Updates to the policy entries
    86      * using addEntry() and removeEntry() are made here.  To ultimately save
    86      * using addEntry() and removeEntry() are made here.  To ultimately save
    87      * the policy entries back to the policy file, the SavePolicy button
    87      * the policy entries back to the policy file, the SavePolicy button