Create PanelDate.java

This commit is contained in:
2015-02-24 13:37:05 +01:00
parent 70ac0560b1
commit 8d4ffa48f1
+13
View File
@@ -0,0 +1,13 @@
import java.awt.Color;
import javax.swing.JPanel;
public class PanelDate extends JPanel {
public PanelDate()
{
super();
setBackground(new Color(255,155,155));
}
}