Hello. Why javax.swing classes work fine in ARIS 7.2 but do not work in ARIS 9.5? There is no any mistakes in code but swing window does not appear.
For example this code demonstrate empty JFrame window:
var jFrame = new javax.swing.JFrame();
jFrame.setTitle("123");
jFrame.setSize(100, 100);
jFrame.setLocation(100,100);
jFrame.setVisible(true);