1
0

Rename LayerUI to GuiUtil

This commit is contained in:
Victor 2014-03-17 10:01:19 +02:00
parent 04b8948440
commit defc3826f7
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import javax.swing.JComponent;
* *
* @author aNNiMON * @author aNNiMON
*/ */
public class LayerUI { public class GuiUtil {
public static class GradientBackground extends javax.swing.plaf.LayerUI<JComponent> { public static class GradientBackground extends javax.swing.plaf.LayerUI<JComponent> {

View File

@ -28,7 +28,7 @@ public class Main extends JFrame {
setLocationByPlatform(true); setLocationByPlatform(true);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
add(new JLayer<>(new MenuPanel(), new LayerUI.PlanetBackground())); add(new JLayer<>(new MenuPanel(), new GuiUtil.PlanetBackground()));
pack(); pack();
} }