TilesResources provides all the string resources needed to build the
interface for a Tiles component. It provides:
Application
information |
public class TilesResources extends ListResourceBundle {
public Object[][] getContents() {
return contents;
}
static final Object[][] contents = {
{"Application", "Tiles"},
{"Version", "Version 1.1"},
{"Copyright", "Copyright (C) 1997 Taligent, Inc."},
|
Strings used
as command labels |
{"Create Tile", "Create Tile"},
{"Color Tile", "Color Tile"},
{"Move Tile", "Move Tile"},
|
Strings used
to build the Tiles menu |
{"Tiles", "Tiles"},
{"Red", "Red"},
{"Green", "Green"},
{"Blue", "Blue"},
{"Rock", "Create Rock"},
{"Paper", "Create Paper"},
{"Scissor", "Create Scissor"},
|
Strings used
for flyover help in the Tiles toolbar |
{"RockText", "Create a rock tile"},
{"PaperText", "Create a paper tile"},
{"ScissorText", "Create a scissor tile"}
};
};
|