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);
|
}
|
|
|
|
|
}
|