Fixed Typo mistake and rearranged code to be more readable.

This commit is contained in:
trifonnt 2009-09-23 09:32:05 +00:00
parent 5727bbef2e
commit b5e516720e
1 changed files with 4 additions and 4 deletions

View File

@ -271,11 +271,11 @@ public final class AdempierePLAF
/****** Available L&F ****************************************************/ /****** Available L&F ****************************************************/
/** Availablle Looks */ /** Available Looks */
private static ValueNamePair[] s_looks = null; private static ValueNamePair[] s_looks = null;
/** Default PLAF */ /** Default PLAF */
private static ValueNamePair s_defaultPLAF = null; private static ValueNamePair s_defaultPLAF = null;
/** Availablle Themes */ /** Available Themes */
private static ValueNamePair[] s_metalThemes = null; private static ValueNamePair[] s_metalThemes = null;
private static ValueNamePair[] s_plasticThemes = null; private static ValueNamePair[] s_plasticThemes = null;
@ -320,11 +320,11 @@ public final class AdempierePLAF
//e-evolution vpj-cd 19102006 //e-evolution vpj-cd 19102006
vp = new ValueNamePair("org.compiere.plaf.CompiereLookAndFeel", CompiereLookAndFeel.NAME); vp = new ValueNamePair("org.compiere.plaf.CompiereLookAndFeel", CompiereLookAndFeel.NAME);
plafList.add (vp); plafList.add (vp);
//Metal
s_vp_compiereTheme = new ValueNamePair("org.compiere.plaf.CompiereThemeBlueMetal", CompiereThemeBlueMetal.NAME); s_vp_compiereTheme = new ValueNamePair("org.compiere.plaf.CompiereThemeBlueMetal", CompiereThemeBlueMetal.NAME);
metalThemes.add (s_vp_compiereTheme); metalThemes.add (s_vp_compiereTheme);
metalThemes.add (new ValueNamePair("org.compiere.plaf.CompiereThemeIce", CompiereThemeIce.NAME)); metalThemes.add (new ValueNamePair("org.compiere.plaf.CompiereThemeIce", CompiereThemeIce.NAME));
//Metal
s_vp_metalTheme = new ValueNamePair("javax.swing.plaf.metal.OceanTheme", "Ocean"); s_vp_metalTheme = new ValueNamePair("javax.swing.plaf.metal.OceanTheme", "Ocean");
metalThemes.add (s_vp_metalTheme); metalThemes.add (s_vp_metalTheme);
metalThemes.add (new ValueNamePair("javax.swing.plaf.metal.DefaultMetalTheme", "Steel")); metalThemes.add (new ValueNamePair("javax.swing.plaf.metal.DefaultMetalTheme", "Steel"));