|
|
@@ -0,0 +1,21 @@
|
|
|
+package simulator;
|
|
|
+
|
|
|
+import java.awt.Color;
|
|
|
+
|
|
|
+import javax.swing.BorderFactory;
|
|
|
+import javax.swing.JPanel;
|
|
|
+
|
|
|
+import agenda.Agenda;
|
|
|
+
|
|
|
+public class SimulatorPane extends JPanel{
|
|
|
+
|
|
|
+ private Agenda agenda;
|
|
|
+
|
|
|
+ public SimulatorPane(Agenda agenda){
|
|
|
+ this.agenda = agenda;
|
|
|
+ this.setOpaque(true);
|
|
|
+ this.setBackground(Color.WHITE);
|
|
|
+ this.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|