Panel for monitoring content.

This commit is contained in:
WickedJack99
2023-11-01 20:55:49 +01:00
parent e2c37f22b9
commit 31fdecff3d

View File

@@ -0,0 +1,24 @@
/**
* @author Aaron Moser
* @date 31.10.2023
*/
package gui.src.panels;
import javax.swing.JPanel;
public class MonitoringPanel extends JPanel {
private static MonitoringPanel instance;
private MonitoringPanel() {
}
public static MonitoringPanel getInstance() {
if (null == instance) {
instance = new MonitoringPanel();
}
return instance;
}
}