готова к сдаче

This commit is contained in:
MorozovDanil 2024-05-13 13:19:53 +04:00
parent 901292b90d
commit 614ebc8df7
3 changed files with 17 additions and 5 deletions

View File

@ -2,8 +2,10 @@
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
</content>
<orderEntry type="jdk" jdkName="21" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<component name="ProjectRootManager" version="2" project-jdk-name="openjdk-21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -1,5 +1,15 @@
package ProjectContainerShip.src;
import javax.swing.*;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
JFrame.setDefaultLookAndFeelDecorated(false);
JFrame frame = new JFrame("Контейнеровоз");
frame.setContentPane(new FormContainerShip().PanelWrapper);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocation(500, 200);
frame.pack();
frame.setSize(700, 500);
frame.setVisible(true);
}
}