001: /*
002: * Copyright 2007 Google Inc.
003: *
004: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
005: * use this file except in compliance with the License. You may obtain a copy of
006: * the License at
007: *
008: * http://www.apache.org/licenses/LICENSE-2.0
009: *
010: * Unless required by applicable law or agreed to in writing, software
011: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
012: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
013: * License for the specific language governing permissions and limitations under
014: * the License.
015: */
016: package com.google.gwt.i18n.client.gen;
017:
018: /**
019: * Interface to represent the constants contained in resource bundle:
020: * com/google/gwt/i18n/client/gen/TestBadKeys.properties.
021: */
022: public interface TestBadKeys extends
023: com.google.gwt.i18n.client.ConstantsWithLookup {
024:
025: /**
026: * Translated "_".
027: *
028: * @return translated "_"
029: * @gwt.key -
030: */
031: String _();
032:
033: /**
034: * Translated
035: * "________________________________________________________________".
036: *
037: * @return translated
038: * "________________________________________________________________"
039: * @gwt.key ----------------------------------------------------------------
040: */
041: String ________________________________________________________________();
042:
043: /**
044: * Translated "__dup".
045: *
046: * @return translated "__dup"
047: * @gwt.key .
048: */
049: String __dup();
050:
051: /**
052: * Translated "__s".
053: *
054: * @return translated "__s"
055: * @gwt.key --s
056: */
057: String __s();
058:
059: /**
060: * Translated "__s_dup".
061: *
062: * @return translated "__s_dup"
063: * @gwt.key -.s
064: */
065: String __s_dup();
066:
067: /**
068: * Translated "__s_dup_dup".
069: *
070: * @return translated "__s_dup_dup"
071: * @gwt.key ..s
072: */
073: String __s_dup_dup();
074:
075: /**
076: * Translated "_1_2_3_4".
077: *
078: * @return translated "_1_2_3_4"
079: * @gwt.key _1.2.3.4
080: */
081: String _1_2_3_4();
082:
083: /**
084: * Translated "_c_____".
085: *
086: * @return translated "_c_____"
087: * @gwt.key -c..-.-
088: */
089: String _c_____();
090:
091: /**
092: * Translated "_level".
093: *
094: * @return translated "_level"
095: * @gwt.key .level
096: */
097: String _level();
098:
099: /**
100: * Translated "a__b".
101: *
102: * @return translated "a__b"
103: * @gwt.key a-.b
104: */
105: String a__b();
106:
107: /**
108: * Translated "a_b_c".
109: *
110: * @return translated "a_b_c"
111: * @gwt.key a-b-c
112: */
113: String a_b_c();
114:
115: /**
116: * Translated "AWT_end".
117: *
118: * @return translated "AWT_end"
119: * @gwt.key AWT.end
120: */
121: String AWT_end();
122:
123: /**
124: * Translated "AWT_f5".
125: *
126: * @return translated "AWT_f5"
127: * @gwt.key AWT.f5
128: */
129: String AWT_f5();
130:
131: /**
132: * Translated "cell_2_5".
133: *
134: * @return translated "cell_2_5"
135: * @gwt.key cell.2.5
136: */
137: String cell_2_5();
138:
139: /**
140: * Translated "Cursor_MoveDrop_32x32_File".
141: *
142: * @return translated "Cursor_MoveDrop_32x32_File"
143: * @gwt.key Cursor.MoveDrop.32x32.File
144: */
145: String Cursor_MoveDrop_32x32_File();
146:
147: /**
148: * Translated "entity_160".
149: *
150: * @return translated "entity_160"
151: * @gwt.key entity.160
152: */
153: String entity_160();
154:
155: /**
156: * Translated "logger_org_hibernate_jdbc".
157: *
158: * @return translated "logger_org_hibernate_jdbc"
159: * @gwt.key logger.org.hibernate.jdbc
160: */
161: String logger_org_hibernate_jdbc();
162:
163: /**
164: * Translated "maven_checkstyle_properties".
165: *
166: * @return translated "maven_checkstyle_properties"
167: * @gwt.key maven.checkstyle.properties
168: */
169: String maven_checkstyle_properties();
170:
171: /**
172: * Translated "maven_jdiff_old_tag".
173: *
174: * @return translated "maven_jdiff_old_tag"
175: * @gwt.key maven.jdiff.old.tag
176: */
177: String maven_jdiff_old_tag();
178:
179: /**
180: * Translated "permissions_755".
181: *
182: * @return translated "permissions_755"
183: * @gwt.key permissions.755
184: */
185: String permissions_755();
186:
187: /**
188: * Translated "zh_spacer".
189: *
190: * @return translated "zh_spacer"
191: * @gwt.key zh.spacer
192: */
193: String zh_spacer();
194: }
|