src/java.desktop/share/classes/sun/applet/resources/MsgAppletViewer.java
author mullan
Wed, 04 Apr 2018 11:26:10 -0400
changeset 49520 7a64b48586d8
parent 47216 71c04702a3d5
permissions -rw-r--r--
8193032: Remove terminally deprecated SecurityManager APIs Summary: Remove the checkTopLevelWindow, checkSystemClipboardAccess, checkAwtEventQueueAccess, and checkMemberAccess methods. Reviewed-by: alanb, mchung, kcr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49520
7a64b48586d8 8193032: Remove terminally deprecated SecurityManager APIs
mullan
parents: 47216
diff changeset
     2
 * Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package sun.applet.resources;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.util.ListResourceBundle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
public class MsgAppletViewer extends ListResourceBundle {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
    public Object[][] getContents() {
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
    32
        Object[][] temp = new Object[][] {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
            {"textframe.button.dismiss", "Dismiss"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
            {"appletviewer.tool.title", "Applet Viewer: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
            {"appletviewer.menu.applet", "Applet"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
            {"appletviewer.menuitem.restart", "Restart"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
            {"appletviewer.menuitem.reload", "Reload"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
            {"appletviewer.menuitem.stop", "Stop"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
            {"appletviewer.menuitem.save", "Save..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
            {"appletviewer.menuitem.start", "Start"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
            {"appletviewer.menuitem.clone", "Clone..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
            {"appletviewer.menuitem.tag", "Tag..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
            {"appletviewer.menuitem.info", "Info..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
            {"appletviewer.menuitem.edit", "Edit"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
            {"appletviewer.menuitem.encoding", "Character Encoding"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
            {"appletviewer.menuitem.print", "Print..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
            {"appletviewer.menuitem.props", "Properties..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            {"appletviewer.menuitem.close", "Close"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
            {"appletviewer.menuitem.quit", "Quit"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            {"appletviewer.label.hello", "Hello..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
            {"appletviewer.status.start", "starting applet..."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            {"appletviewer.appletsave.filedialogtitle","Serialize Applet into File"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            {"appletviewer.appletsave.err1", "serializing an {0} to {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            {"appletviewer.appletsave.err2", "in appletSave: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            {"appletviewer.applettag", "Tag shown"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            {"appletviewer.applettag.textframe", "Applet HTML Tag"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            {"appletviewer.appletinfo.applet", "-- no applet info --"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            {"appletviewer.appletinfo.param", "-- no parameter info --"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            {"appletviewer.appletinfo.textframe", "Applet Info"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            {"appletviewer.appletprint.fail", "Printing failed."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            {"appletviewer.appletprint.finish", "Finished printing."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            {"appletviewer.appletprint.cancel", "Printing cancelled."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            {"appletviewer.appletencoding", "Character Encoding: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            {"appletviewer.parse.warning.requiresname", "Warning: <param name=... value=...> tag requires name attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            {"appletviewer.parse.warning.paramoutside", "Warning: <param> tag outside <applet> ... </applet>."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            {"appletviewer.parse.warning.applet.requirescode", "Warning: <applet> tag requires code attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            {"appletviewer.parse.warning.applet.requiresheight", "Warning: <applet> tag requires height attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            {"appletviewer.parse.warning.applet.requireswidth", "Warning: <applet> tag requires width attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            {"appletviewer.parse.warning.object.requirescode", "Warning: <object> tag requires code attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            {"appletviewer.parse.warning.object.requiresheight", "Warning: <object> tag requires height attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            {"appletviewer.parse.warning.object.requireswidth", "Warning: <object> tag requires width attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            {"appletviewer.parse.warning.embed.requirescode", "Warning: <embed> tag requires code attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            {"appletviewer.parse.warning.embed.requiresheight", "Warning: <embed> tag requires height attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            {"appletviewer.parse.warning.embed.requireswidth", "Warning: <embed> tag requires width attribute."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            {"appletviewer.parse.warning.appnotLongersupported", "Warning: <app> tag no longer supported, use <applet> instead:"},
38407
b1c0ed1d8270 8155071: AppletViewer should print the deprecation warning that the Applet API is deprecated
serb
parents: 36444
diff changeset
    76
            {"appletviewer.deprecated", "Warning: Applet API and AppletViewer are deprecated."},
36444
223801243559 8139508: Debug option does not work in appletviewer
alexsch
parents: 35694
diff changeset
    77
            {"appletviewer.usage", "Usage: appletviewer <options> url(s)\n\nwhere <options> include:\n  -encoding <encoding>    Specify character encoding used by HTML files\n  -J<runtime flag>        Pass argument to the java interpreter\n\nThe -J option is non-standard and subject to change without notice."},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            {"appletviewer.main.err.unsupportedopt", "Unsupported option: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            {"appletviewer.main.err.unrecognizedarg", "Unrecognized argument: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            {"appletviewer.main.err.dupoption", "Duplicate use of option: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            {"appletviewer.main.err.inputfile", "No input files specified."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            {"appletviewer.main.err.badurl", "Bad URL: {0} ( {1} )"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            {"appletviewer.main.err.io", "I/O exception while reading: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            {"appletviewer.main.err.readablefile", "Make sure that {0} is a file and is readable."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            {"appletviewer.main.err.correcturl", "Is {0} the correct URL?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            {"appletviewer.main.prop.store", "User-specific properties for AppletViewer"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            {"appletviewer.main.err.prop.cantread", "Can''t read user properties file: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            {"appletviewer.main.err.prop.cantsave", "Can''t save user properties file: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            {"appletviewer.main.warn.nosecmgr", "Warning: disabling security."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            {"appletviewer.main.debug.cantfinddebug", "Can''t find the debugger!"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            {"appletviewer.main.debug.cantfindmain", "Can''t find main method in the debugger!"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            {"appletviewer.main.debug.exceptionindebug", "Exception in the debugger!"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            {"appletviewer.main.debug.cantaccess", "Can''t access the debugger!"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            {"appletviewer.main.nosecmgr", "Warning: SecurityManager not installed!"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            {"appletviewer.main.warning", "Warning: No applets were started. Make sure the input contains an <applet> tag."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            {"appletviewer.main.warn.prop.overwrite", "Warning: Temporarily overwriting system property at user''s request: key: {0} old value: {1} new value: {2}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            {"appletviewer.main.warn.cantreadprops", "Warning: Can''t read AppletViewer properties file: {0} Using defaults."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            {"appletioexception.loadclass.throw.interrupted", "class loading interrupted: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            {"appletioexception.loadclass.throw.notloaded", "class not loaded: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            {"appletclassloader.loadcode.verbose", "Opening stream to: {0} to get {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            {"appletclassloader.filenotfound", "File not found when looking for: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            {"appletclassloader.fileformat", "File format exception when loading: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            {"appletclassloader.fileioexception", "I/O exception when loading: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            {"appletclassloader.fileexception", "{0} exception when loading: {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            {"appletclassloader.filedeath", "{0} killed when loading: {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            {"appletclassloader.fileerror", "{0} error when loading: {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            {"appletclassloader.findclass.verbose.openstream", "Opening stream to: {0} to get {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            {"appletclassloader.getresource.verbose.forname", "AppletClassLoader.getResource for name: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            {"appletclassloader.getresource.verbose.found", "Found resource: {0} as a system resource"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            {"appletclassloader.getresourceasstream.verbose", "Found resource: {0} as a system resource"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            {"appletpanel.runloader.err", "Either object or code parameter!"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            {"appletpanel.runloader.exception", "exception while deserializing {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            {"appletpanel.destroyed", "Applet destroyed."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            {"appletpanel.loaded", "Applet loaded."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            {"appletpanel.started", "Applet started."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            {"appletpanel.inited", "Applet initialized."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            {"appletpanel.stopped", "Applet stopped."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            {"appletpanel.disposed", "Applet disposed."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            {"appletpanel.nocode", "APPLET tag missing CODE parameter."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            {"appletpanel.notfound", "load: class {0} not found."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            {"appletpanel.nocreate", "load: {0} can''t be instantiated."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            {"appletpanel.noconstruct", "load: {0} is not public or has no public constructor."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            {"appletpanel.death", "killed"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            {"appletpanel.exception", "exception: {0}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            {"appletpanel.exception2", "exception: {0}: {1}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            {"appletpanel.error", "error: {0}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            {"appletpanel.error2", "error: {0}: {1}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            {"appletpanel.notloaded", "Init: applet not loaded."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            {"appletpanel.notinited", "Start: applet not initialized."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            {"appletpanel.notstarted", "Stop: applet not started."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            {"appletpanel.notstopped", "Destroy: applet not stopped."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            {"appletpanel.notdestroyed", "Dispose: applet not destroyed."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            {"appletpanel.notdisposed", "Load: applet not disposed."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            {"appletpanel.bail", "Interrupted: bailing out."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            {"appletpanel.filenotfound", "File not found when looking for: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            {"appletpanel.fileformat", "File format exception when loading: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            {"appletpanel.fileioexception", "I/O exception when loading: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            {"appletpanel.fileexception", "{0} exception when loading: {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            {"appletpanel.filedeath", "{0} killed when loading: {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            {"appletpanel.fileerror", "{0} error when loading: {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            {"appletpanel.badattribute.exception", "HTML parsing: incorrect value for width/height attribute"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            {"appletillegalargumentexception.objectinputstream", "AppletObjectInputStream requires non-null loader"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            {"appletprops.title", "AppletViewer Properties"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            {"appletprops.label.http.server", "Http proxy server:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            {"appletprops.label.http.proxy", "Http proxy port:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            {"appletprops.label.network", "Network access:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            {"appletprops.choice.network.item.none", "None"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            {"appletprops.choice.network.item.applethost", "Applet Host"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            {"appletprops.choice.network.item.unrestricted", "Unrestricted"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            {"appletprops.label.class", "Class access:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            {"appletprops.choice.class.item.restricted", "Restricted"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            {"appletprops.choice.class.item.unrestricted", "Unrestricted"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            {"appletprops.label.unsignedapplet", "Allow unsigned applets:"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            {"appletprops.choice.unsignedapplet.no", "No"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            {"appletprops.choice.unsignedapplet.yes", "Yes"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            {"appletprops.button.apply", "Apply"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            {"appletprops.button.cancel", "Cancel"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            {"appletprops.button.reset", "Reset"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            {"appletprops.apply.exception", "Failed to save properties: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            /* 4066432 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            {"appletprops.title.invalidproxy", "Invalid Entry"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            {"appletprops.label.invalidproxy", "Proxy Port must be a positive integer value."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            {"appletprops.button.ok", "OK"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            /* end 4066432 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            {"appletprops.prop.store", "User-specific properties for AppletViewer"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            {"appletsecurityexception.checkcreateclassloader", "Security Exception: classloader"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            {"appletsecurityexception.checkaccess.thread", "Security Exception: thread"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            {"appletsecurityexception.checkaccess.threadgroup", "Security Exception: threadgroup: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            {"appletsecurityexception.checkexit", "Security Exception: exit: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            {"appletsecurityexception.checkexec", "Security Exception: exec: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            {"appletsecurityexception.checklink", "Security Exception: link: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            {"appletsecurityexception.checkpropsaccess", "Security Exception: properties"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            {"appletsecurityexception.checkpropsaccess.key", "Security Exception: properties access {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            {"appletsecurityexception.checkread.exception1", "Security Exception: {0}, {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            {"appletsecurityexception.checkread.exception2", "Security Exception: file.read: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            {"appletsecurityexception.checkread", "Security Exception: file.read: {0} == {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            {"appletsecurityexception.checkwrite.exception", "Security Exception: {0}, {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            {"appletsecurityexception.checkwrite", "Security Exception: file.write: {0} == {1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            {"appletsecurityexception.checkread.fd", "Security Exception: fd.read"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            {"appletsecurityexception.checkwrite.fd", "Security Exception: fd.write"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            {"appletsecurityexception.checklisten", "Security Exception: socket.listen: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            {"appletsecurityexception.checkaccept", "Security Exception: socket.accept: {0}:{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            {"appletsecurityexception.checkconnect.networknone", "Security Exception: socket.connect: {0}->{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            {"appletsecurityexception.checkconnect.networkhost1", "Security Exception: Couldn''t connect to {0} with origin from {1}."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            {"appletsecurityexception.checkconnect.networkhost2", "Security Exception: Couldn''t resolve IP for host {0} or for {1}. "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            {"appletsecurityexception.checkconnect.networkhost3", "Security Exception: Could not resolve IP for host {0}. See the trustProxy property."},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            {"appletsecurityexception.checkconnect", "Security Exception: connect: {0}->{1}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            {"appletsecurityexception.checkpackageaccess", "Security Exception: cannot access package: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            {"appletsecurityexception.checkpackagedefinition", "Security Exception: cannot define package: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            {"appletsecurityexception.cannotsetfactory", "Security Exception: cannot set factory"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            {"appletsecurityexception.checkgetprintjob", "Security Exception: getPrintJob"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            {"appletsecurityexception.checksecurityaccess", "Security Exception: security operation: {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            {"appletsecurityexception.getsecuritycontext.unknown", "unknown class loader type. unable to check for getContext"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            {"appletsecurityexception.checkread.unknown", "unknown class loader type. unable to check for checking read {0}"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            {"appletsecurityexception.checkconnect.unknown", "unknown class loader type. unable to check for checking connect"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        };
6196
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   197
e11b0538a16c 6959252: convert the anonymous arrays to named arrays in Java List Resource files
yhuang
parents: 5506
diff changeset
   198
        return temp;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
}