Palettes

A palette is a collection of symbols that are organized into categories.
Palettes are defined by the IlvPalette class. You need to create a category in the palette and set it as the root category to be able to add symbols and other categories.
An IlvPalette instance contains the name, description and icon properties. These String properties are designed to be set for a specific locale.
The following example shows how to create some new palettes:
IlvPalette p1 = new IlvPalette();
IlvPalette p2 = new IlvPalette();
IlvPalette p3 = new IlvPalette();

p1.setDefaultLocale(Locale.FRENCH);
p1.setName("Voitures");