2023-11-19 01:53:56 +03:00
|
|
|
package Common.UI.Windows.Interface;
|
2023-10-10 23:33:23 +03:00
|
|
|
import javax.swing.*;
|
2023-10-10 20:14:48 +03:00
|
|
|
public interface TestsWindow {
|
|
|
|
|
void ShowAll();
|
2023-10-10 23:33:23 +03:00
|
|
|
JPanel getContent();
|
2023-10-10 20:14:48 +03:00
|
|
|
}
|