KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > oracle > toplink > essentials > internal > localization > i18n > ToStringLocalizationResource


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the "License"). You may not use this file except
5  * in compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * glassfish/bootstrap/legal/CDDLv1.0.txt or
9  * https://glassfish.dev.java.net/public/CDDLv1.0.html.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * HEADER in each file and include the License file at
15  * glassfish/bootstrap/legal/CDDLv1.0.txt. If applicable,
16  * add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your
18  * own identifying information: Portions Copyright [yyyy]
19  * [name of copyright owner]
20  */

21 // Copyright (c) 1998, 2005, Oracle. All rights reserved.
22
package oracle.toplink.essentials.internal.localization.i18n;
23
24 import java.util.ListResourceBundle JavaDoc;
25
26 /**
27  * English ResourceBundle for ToStringLocalization messages.
28  *
29  * @author Shannon Chen
30  * @since TOPLink/Java 5.0
31  */

32 public class ToStringLocalizationResource extends ListResourceBundle JavaDoc {
33     static final Object JavaDoc[][] contents = {
34                                            { "datasource_name", "datasource name" },
35                                            { "datasource", "datasource" },
36                                            { "error_printing_expression", "Error printing expression" },
37                                            { "not_instantiated", "not instantiated" },
38                                            { "connected", "connected" },
39                                            { "disconnected", "disconnected" },
40                                            { "nest_level", "(nest level = {0})" },
41                                            { "commit_depth", "(commit depth = {0})" },
42                                            { "empty_commit_order_dependency_node", "Empty Commit Order Dependency Node" },
43                                            { "node", "Node ({0})" },
44                                            { "platform", "platform" },
45                                            { "user_name", "user name" },
46                                            { "server_name", "server name" },
47                                            { "database_name", "database name" },
48                                            { "datasource_URL", "datasource URL" },
49                                            { "depth_reset_key", "(depth = {0}, reset key = {1})" },
50                                            { "pooled", "pooled" },
51                                            { "login", "login" },
52                                            { "lazy", "lazy" },
53                                            { "non_lazy", "non-lazy" },
54                                            { "min_max", "(minimum connections = {0}, maximum connections = {1})" },
55                                            { "begin_profile_of", "Begin profile of" },
56                                            { "end_profile", "End profile" },
57                                            { "profile", "Profile" },
58                                            { "class", "class" },
59                                            { "number_of_objects", "number of objects" },
60                                            { "total_time", "total time" },
61                                            { "local_time", "local time" },
62                                            { "profiling_time", "profiling time" },
63                                            { "time_object", "time/object" },
64                                            { "objects_second", "objects/second" },
65                                            { "shortestTime", "shortest time" },
66                                            { "longestTime", "longest time" },
67                                            { "context", "Context: " },
68                                            { "name", "Name: " },
69                                            { "schema", "Schema: " },
70                                            { "no_streams", "no stream(s)" },
71                                            { "reader", "reader" },
72                                            { "multiple_readers", "multiple readers" },
73                                            { "writer", "writer" },
74                                            { "no_files", "no file(s)" },
75                                            { "mulitple_files", "mulitple files" },
76                                            { "unknown", "unknown" },
77                                            { "connector", "connector" }
78     };
79
80     /**
81      * Return the lookup table.
82      */

83     protected Object JavaDoc[][] getContents() {
84         return contents;
85     }
86 }
87
Popular Tags