Alejandro Acuña
2025-04-29 d1d736e487d9eb104dcae9def948066037afd2f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package art.client.GUI.components.devices.window.colors.rtz32.realtime;
 
import art.library.gui.flat.FlatPanel;
import art.library.gui.flat.FlatTableInput;
import art.library.model.devices.colors.controller.RTZ32.RTZ32_Controller;
import java.awt.BorderLayout;
import javax.swing.JPanel;
 
 
public class RTZ32_PanelRealtime_Colors extends JPanel
{
    private RTZ32_Controller rtz32 = null;
    private RTZ32_PanelRealtime_Colors_Content content = null;
    private FlatTableInput table1 = null;
    
    public RTZ32_PanelRealtime_Colors(RTZ32_Controller rtz32)
    {
        this.rtz32 = rtz32;
        initialise();
    }
 
    
    public void timer()
    {
        if (content != null) content.timer();
    }
 
    
    private void initialise()
    {
        FlatPanel panel1 = new FlatPanel();
        {
            table1 = new FlatTableInput(150);
            {
            }
        }
 
        content = new RTZ32_PanelRealtime_Colors_Content(rtz32);
 
        
        this.setLayout(new BorderLayout());
        this.add(content, BorderLayout.CENTER);
    }
 
    
    
    
}