Source Code Cross Referenced for MsgAppletViewer.java in  » 6.0-JDK-Modules » j2me » sun » applet » resources » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » sun.applet.resources 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * @(#)MsgAppletViewer.java	1.26 06/10/10
003:         *
004:         * Copyright  1990-2006 Sun Microsystems, Inc. All Rights Reserved.
005:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
006:         * 
007:         * This program is free software; you can redistribute it and/or
008:         * modify it under the terms of the GNU General Public License version
009:         * 2 only, as published by the Free Software Foundation. 
010:         * 
011:         * This program is distributed in the hope that it will be useful, but
012:         * WITHOUT ANY WARRANTY; without even the implied warranty of
013:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014:         * General Public License version 2 for more details (a copy is
015:         * included at /legal/license.txt). 
016:         * 
017:         * You should have received a copy of the GNU General Public License
018:         * version 2 along with this work; if not, write to the Free Software
019:         * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
020:         * 02110-1301 USA 
021:         * 
022:         * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
023:         * Clara, CA 95054 or visit www.sun.com if you need additional
024:         * information or have any questions. 
025:         *
026:         */
027:        package sun.applet.resources;
028:
029:        import java.util.ListResourceBundle;
030:
031:        public class MsgAppletViewer extends ListResourceBundle {
032:            public Object[][] getContents() {
033:                return new Object[][] {
034:                        { "textframe.button.dismiss", "Dismiss" },
035:                        { "appletviewer.tool.title", "Applet Viewer: {0}" },
036:                        { "appletviewer.menu.applet", "Applet" },
037:                        { "appletviewer.menuitem.restart", "Restart" },
038:                        { "appletviewer.menuitem.reload", "Reload" },
039:                        { "appletviewer.menuitem.stop", "Stop" },
040:                        { "appletviewer.menuitem.save", "Save..." },
041:                        { "appletviewer.menuitem.start", "Start" },
042:                        { "appletviewer.menuitem.clone", "Clone..." },
043:                        { "appletviewer.menuitem.tag", "Tag..." },
044:                        { "appletviewer.menuitem.info", "Info..." },
045:                        { "appletviewer.menuitem.edit", "Edit" },
046:                        { "appletviewer.menuitem.encoding",
047:                                "Character Encoding" },
048:                        { "appletviewer.menuitem.print", "Print..." },
049:                        { "appletviewer.menuitem.props", "Properties..." },
050:                        { "appletviewer.menuitem.close", "Close" },
051:                        { "appletviewer.menuitem.quit", "Quit" },
052:                        { "appletviewer.label.hello", "Hello..." },
053:                        { "appletviewer.status.start", "starting applet..." },
054:                        { "appletviewer.appletsave.filedialogtitle",
055:                                "Serialize Applet into File" },
056:                        { "appletviewer.appletsave.err1",
057:                                "serializing an {0} to {1}" },
058:                        { "appletviewer.appletsave.err2", "in appletSave: {0}" },
059:                        { "appletviewer.applettag", "Tag shown" },
060:                        { "appletviewer.applettag.textframe", "Applet HTML Tag" },
061:                        { "appletviewer.appletinfo.applet",
062:                                "-- no applet info --" },
063:                        { "appletviewer.appletinfo.param",
064:                                "-- no parameter info --" },
065:                        { "appletviewer.appletinfo.textframe", "Applet Info" },
066:                        { "appletviewer.appletprint.printjob", "Print Applet" },
067:                        { "appletviewer.appletprint.fail", "Printing failed." },
068:                        { "appletviewer.appletprint.finish",
069:                                "Finished printing." },
070:                        { "appletviewer.appletprint.cancel",
071:                                "Printing cancelled." },
072:                        { "appletviewer.appletencoding",
073:                                "Character Encoding: {0}" },
074:                        { "appletviewer.parse.warning.requiresname",
075:                                "Warning: <param name=... value=...> tag requires name attribute." },
076:                        { "appletviewer.parse.warning.paramoutside",
077:                                "Warning: <param> tag outside <applet> ... </applet>." },
078:                        { "appletviewer.parse.warning.applet.requirescode",
079:                                "Warning: <applet> tag requires code attribute." },
080:                        { "appletviewer.parse.warning.applet.requiresheight",
081:                                "Warning: <applet> tag requires height attribute." },
082:                        { "appletviewer.parse.warning.applet.requireswidth",
083:                                "Warning: <applet> tag requires width attribute." },
084:                        { "appletviewer.parse.warning.object.requirescode",
085:                                "Warning: <object> tag requires code attribute." },
086:                        { "appletviewer.parse.warning.object.requiresheight",
087:                                "Warning: <object> tag requires height attribute." },
088:                        { "appletviewer.parse.warning.object.requireswidth",
089:                                "Warning: <object> tag requires width attribute." },
090:                        { "appletviewer.parse.warning.embed.requirescode",
091:                                "Warning: <embed> tag requires code attribute." },
092:                        { "appletviewer.parse.warning.embed.requiresheight",
093:                                "Warning: <embed> tag requires height attribute." },
094:                        { "appletviewer.parse.warning.embed.requireswidth",
095:                                "Warning: <embed> tag requires width attribute." },
096:                        { "appletviewer.parse.warning.appnotLongersupported",
097:                                "Warning: <app> tag no longer supported, use <applet> instead:" },
098:                        {
099:                                "appletviewer.usage",
100:                                "Usage: appletviewer <options> url(s)\n\nwhere <options> include:\n  -debug                  Start the applet viewer in the Java debugger\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." },
101:                        { "appletviewer.main.err.unsupportedopt",
102:                                "Unsupported option: {0}" },
103:                        { "appletviewer.main.err.unrecognizedarg",
104:                                "Unrecognized argument: {0}" },
105:                        { "appletviewer.main.err.dupoption",
106:                                "Duplicate use of option: {0}" },
107:                        { "appletviewer.main.err.inputfile",
108:                                "No input files specified." },
109:                        { "appletviewer.main.err.badurl",
110:                                "Bad URL: {0} ( {1} )" },
111:                        { "appletviewer.main.err.io",
112:                                "I/O exception while reading: {0}" },
113:                        { "appletviewer.main.err.readablefile",
114:                                "Make sure that {0} is a file and is readable." },
115:                        { "appletviewer.main.err.correcturl",
116:                                "Is {0} the correct URL?" },
117:                        { "appletviewer.main.prop.store",
118:                                "User-specific properties for AppletViewer" },
119:                        { "appletviewer.main.err.prop.cantread",
120:                                "Can''t read user properties file: {0}" },
121:                        { "appletviewer.main.err.prop.cantsave",
122:                                "Can''t save user properties file: {0}" },
123:                        { "appletviewer.main.warn.nosecmgr",
124:                                "Warning: disabling security." },
125:                        { "appletviewer.main.debug.cantfinddebug",
126:                                "Can''t find the debugger!" },
127:                        { "appletviewer.main.debug.cantfindmain",
128:                                "Can''t find main method in the debugger!" },
129:                        { "appletviewer.main.debug.exceptionindebug",
130:                                "Exception in the debugger!" },
131:                        { "appletviewer.main.debug.cantaccess",
132:                                "Can''t access the debugger!" },
133:                        { "appletviewer.main.nosecmgr",
134:                                "Warning: SecurityManager not installed!" },
135:                        {
136:                                "appletviewer.main.warning",
137:                                "Warning: No applets were started. Make sure the input contains an <applet> tag." },
138:                        {
139:                                "appletviewer.main.warn.prop.overwrite",
140:                                "Warning: Temporarily overwriting system property at user's request: key: {0} old value: {1} new value: {2}" },
141:                        { "appletviewer.main.warn.cantreadprops",
142:                                "Warning: Can''t read AppletViewer properties file: {0} Using defaults." },
143:                        { "appletioexception.loadclass.throw.interrupted",
144:                                "class loading interrupted: {0}" },
145:                        { "appletioexception.loadclass.throw.notloaded",
146:                                "class not loaded: {0}" },
147:                        { "appletclassloader.loadcode.verbose",
148:                                "Opening stream to: {0} to get {1}" },
149:                        { "appletclassloader.filenotfound",
150:                                "File not found when looking for: {0}" },
151:                        { "appletclassloader.fileformat",
152:                                "File format exception when loading: {0}" },
153:                        { "appletclassloader.fileioexception",
154:                                "I/O exception when loading: {0}" },
155:                        { "appletclassloader.fileexception",
156:                                "{0} exception when loading: {1}" },
157:                        { "appletclassloader.filedeath",
158:                                "{0} killed when loading: {1}" },
159:                        { "appletclassloader.fileerror",
160:                                "{0} error when loading: {1}" },
161:                        { "appletclassloader.findclass.verbose.findclass",
162:                                "{0} find class {1}" },
163:                        { "appletclassloader.findclass.verbose.openstream",
164:                                "Opening stream to: {0} to get {1}" },
165:                        { "appletclassloader.getresource.verbose.forname",
166:                                "AppletClassLoader.getResource for name: {0}" },
167:                        { "appletclassloader.getresource.verbose.found",
168:                                "Found resource: {0} as a system resource" },
169:                        { "appletclassloader.getresourceasstream.verbose",
170:                                "Found resource: {0} as a system resource" },
171:                        { "appletpanel.runloader.err",
172:                                "Either object or code parameter!" },
173:                        { "appletpanel.runloader.exception",
174:                                "exception while deserializing {0}" },
175:                        { "appletpanel.destroyed", "Applet destroyed." },
176:                        { "appletpanel.loaded", "Applet loaded." },
177:                        { "appletpanel.started", "Applet started." },
178:                        { "appletpanel.inited", "Applet initialized." },
179:                        { "appletpanel.stopped", "Applet stopped." },
180:                        { "appletpanel.disposed", "Applet disposed." },
181:                        { "appletpanel.nocode",
182:                                "APPLET tag missing CODE parameter." },
183:                        { "appletpanel.notfound", "load: class {0} not found." },
184:                        { "appletpanel.nocreate",
185:                                "load: {0} can''t be instantiated." },
186:                        { "appletpanel.noconstruct",
187:                                "load: {0} is not public or has no public constructor." },
188:                        { "appletpanel.death", "killed" },
189:                        { "appletpanel.exception", "exception: {0}." },
190:                        { "appletpanel.exception2", "exception: {0}: {1}." },
191:                        { "appletpanel.error", "error: {0}." },
192:                        { "appletpanel.error2", "error: {0}: {1}." },
193:                        { "appletpanel.notloaded", "Init: applet not loaded." },
194:                        { "appletpanel.notinited",
195:                                "Start: applet not initialized." },
196:                        { "appletpanel.notstarted", "Stop: applet not started." },
197:                        { "appletpanel.notstopped",
198:                                "Destroy: applet not stopped." },
199:                        { "appletpanel.notdestroyed",
200:                                "Dispose: applet not destroyed." },
201:                        { "appletpanel.notdisposed",
202:                                "Load: applet not disposed." },
203:                        { "appletpanel.bail", "Interrupted: bailing out." },
204:                        { "appletpanel.filenotfound",
205:                                "File not found when looking for: {0}" },
206:                        { "appletpanel.fileformat",
207:                                "File format exception when loading: {0}" },
208:                        { "appletpanel.fileioexception",
209:                                "I/O exception when loading: {0}" },
210:                        { "appletpanel.fileexception",
211:                                "{0} exception when loading: {1}" },
212:                        { "appletpanel.filedeath",
213:                                "{0} killed when loading: {1}" },
214:                        { "appletpanel.fileerror",
215:                                "{0} error when loading: {1}" },
216:                        { "appletillegalargumentexception.objectinputstream",
217:                                "AppletObjectInputStream requires non-null loader" },
218:                        { "appletprops.title", "AppletViewer Properties" },
219:                        { "appletprops.label.http.server", "Http proxy server:" },
220:                        { "appletprops.label.http.proxy", "Http proxy port:" },
221:                        { "appletprops.label.network", "Network access:" },
222:                        { "appletprops.choice.network.item.none", "None" },
223:                        { "appletprops.choice.network.item.applethost",
224:                                "Applet Host" },
225:                        { "appletprops.choice.network.item.unrestricted",
226:                                "Unrestricted" },
227:                        { "appletprops.label.class", "Class access:" },
228:                        { "appletprops.choice.class.item.restricted",
229:                                "Restricted" },
230:                        { "appletprops.choice.class.item.unrestricted",
231:                                "Unrestricted" },
232:                        { "appletprops.label.unsignedapplet",
233:                                "Allow unsigned applets:" },
234:                        { "appletprops.choice.unsignedapplet.no", "No" },
235:                        { "appletprops.choice.unsignedapplet.yes", "Yes" },
236:                        { "appletprops.button.apply", "Apply" },
237:                        { "appletprops.button.cancel", "Cancel" },
238:                        { "appletprops.button.reset", "Reset" },
239:                        { "appletprops.apply.exception",
240:                                "Failed to save properties: {0}" },
241:
242:                        /* 4066432 */
243:                        { "appletprops.title.invalidproxy", "Invalid Entry" },
244:                        { "appletprops.label.invalidproxy",
245:                                "Proxy Port must be a positive integer value." },
246:                        { "appletprops.button.ok", "OK" },
247:
248:                        /* end 4066432 */
249:                        { "appletprops.prop.store",
250:                                "User-specific properties for AppletViewer" },
251:                        { "appletsecurityexception.checkcreateclassloader",
252:                                "Security Exception: classloader" },
253:                        { "appletsecurityexception.checkaccess.thread",
254:                                "Security Exception: thread" },
255:                        { "appletsecurityexception.checkaccess.threadgroup",
256:                                "Security Exception: threadgroup: {0}" },
257:                        { "appletsecurityexception.checkexit",
258:                                "Security Exception: exit: {0}" },
259:                        { "appletsecurityexception.checkexec",
260:                                "Security Exception: exec: {0}" },
261:                        { "appletsecurityexception.checklink",
262:                                "Security Exception: link: {0}" },
263:                        { "appletsecurityexception.checkpropsaccess",
264:                                "Security Exception: properties" },
265:                        { "appletsecurityexception.checkpropsaccess.key",
266:                                "Security Exception: properties access {0}" },
267:                        { "appletsecurityexception.checkread.exception1",
268:                                "Security Exception: {0}, {1}" },
269:                        { "appletsecurityexception.checkread.exception2",
270:                                "Security Exception: file.read: {0}" },
271:                        { "appletsecurityexception.checkread",
272:                                "Security Exception: file.read: {0} == {1}" },
273:                        { "appletsecurityexception.checkwrite.exception",
274:                                "Security Exception: {0}, {1}" },
275:                        { "appletsecurityexception.checkwrite",
276:                                "Security Exception: file.write: {0} == {1}" },
277:                        { "appletsecurityexception.checkread.fd",
278:                                "Security Exception: fd.read" },
279:                        { "appletsecurityexception.checkwrite.fd",
280:                                "Security Exception: fd.write" },
281:                        { "appletsecurityexception.checklisten",
282:                                "Security Exception: socket.listen: {0}" },
283:                        { "appletsecurityexception.checkaccept",
284:                                "Security Exception: socket.accept: {0}:{1}" },
285:                        { "appletsecurityexception.checkconnect.networknone",
286:                                "Security Exception: socket.connect: {0}->{1}" },
287:                        { "appletsecurityexception.checkconnect.networkhost1",
288:                                "Security Exception: Couldn''t connect to {0} with origin from {1}." },
289:                        { "appletsecurityexception.checkconnect.networkhost2",
290:                                "Security Exception: Couldn''t resolve IP for host {0} or for {1}. " },
291:                        {
292:                                "appletsecurityexception.checkconnect.networkhost3",
293:                                "Security Exception: Could not resolve IP for host {0}. See the trustProxy property." },
294:                        { "appletsecurityexception.checkconnect",
295:                                "Security Exception: connect: {0}->{1}" },
296:                        { "appletsecurityexception.checkpackageaccess",
297:                                "Security Exception: cannot access package: {0}" },
298:                        { "appletsecurityexception.checkpackagedefinition",
299:                                "Security Exception: cannot define package: {0}" },
300:                        { "appletsecurityexception.cannotsetfactory",
301:                                "Security Exception: cannot set factory" },
302:                        { "appletsecurityexception.checkmemberaccess",
303:                                "Security Exception: check member access" },
304:                        { "appletsecurityexception.checkgetprintjob",
305:                                "Security Exception: getPrintJob" },
306:                        { "appletsecurityexception.checksystemclipboardaccess",
307:                                "Security Exception: getSystemClipboard" },
308:                        { "appletsecurityexception.checkawteventqueueaccess",
309:                                "Security Exception: getEventQueue" },
310:                        { "appletsecurityexception.checksecurityaccess",
311:                                "Security Exception: security operation: {0}" },
312:                        { "appletsecurityexception.getsecuritycontext.unknown",
313:                                "unknown class loader type. unable to check for getContext" },
314:                        { "appletsecurityexception.checkread.unknown",
315:                                "unknown class loader type. unable to check for checking read {0}" },
316:                        { "appletsecurityexception.checkconnect.unknown",
317:                                "unknown class loader type. unable to check for checking connect" }, };
318:            }
319:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.