01: /*
02: * Copyright 2007 Google Inc.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
05: * use this file except in compliance with the License. You may obtain a copy of
06: * the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13: * License for the specific language governing permissions and limitations under
14: * the License.
15: */
16: package com.google.gwt.i18n.client.gen;
17:
18: /**
19: * Interface to represent the constants contained in resource bundle:
20: * com/google/gwt/i18n/client/gen/Shapes.properties.
21: */
22: public interface Shapes extends com.google.gwt.i18n.client.Constants {
23:
24: /**
25: * Translated "a triangle".
26: *
27: * @return translated "a triangle"
28: * @gwt.key triangle
29: */
30: String triangle();
31:
32: /**
33: * Translated "a square ".
34: *
35: * @return translated "a square "
36: * @gwt.key square
37: */
38: String square();
39:
40: /**
41: * Translated "a circle".
42: *
43: * @return translated "a circle"
44: * @gwt.key circle
45: */
46: String circle();
47:
48: /**
49: * Translated "a color wheel".
50: *
51: * @return translated "a color wheel"
52: * @gwt.key shapeColor
53: */
54: String shapeColor();
55: }
|