Browse Source

init

master
Robin Thoni 7 years ago
commit
0b73d6d2d1

+ 54
- 0
.gitignore View File

@@ -0,0 +1,54 @@
1
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
2
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3
+
4
+# User-specific stuff:
5
+.idea/workspace.xml
6
+.idea/tasks.xml
7
+
8
+# Sensitive or high-churn files:
9
+.idea/dataSources.ids
10
+.idea/dataSources.xml
11
+.idea/dataSources.local.xml
12
+.idea/sqlDataSources.xml
13
+.idea/dynamic.xml
14
+.idea/uiDesigner.xml
15
+
16
+# Gradle:
17
+.idea/gradle.xml
18
+.idea/libraries
19
+
20
+# Mongo Explorer plugin:
21
+.idea/mongoSettings.xml
22
+
23
+## File-based project format:
24
+*.iws
25
+
26
+## Plugin-specific files:
27
+
28
+# IntelliJ
29
+/out/
30
+
31
+# mpeltonen/sbt-idea plugin
32
+.idea_modules/
33
+
34
+# JIRA plugin
35
+atlassian-ide-plugin.xml
36
+
37
+# Crashlytics plugin (for Android Studio and IntelliJ)
38
+com_crashlytics_export_strings.xml
39
+crashlytics.properties
40
+crashlytics-build.properties
41
+fabric.properties
42
+
43
+*.class
44
+
45
+# Mobile Tools for Java (J2ME)
46
+.mtj.tmp/
47
+
48
+# Package Files #
49
+*.jar
50
+*.war
51
+*.ear
52
+
53
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
54
+hs_err_pid*

+ 22
- 0
.idea/compiler.xml View File

@@ -0,0 +1,22 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="CompilerConfiguration">
4
+    <resourceExtensions />
5
+    <wildcardResourcePatterns>
6
+      <entry name="!?*.java" />
7
+      <entry name="!?*.form" />
8
+      <entry name="!?*.class" />
9
+      <entry name="!?*.groovy" />
10
+      <entry name="!?*.scala" />
11
+      <entry name="!?*.flex" />
12
+      <entry name="!?*.kt" />
13
+      <entry name="!?*.clj" />
14
+      <entry name="!?*.aj" />
15
+    </wildcardResourcePatterns>
16
+    <annotationProcessing>
17
+      <profile default="true" name="Default" enabled="false">
18
+        <processorPath useClasspath="true" />
19
+      </profile>
20
+    </annotationProcessing>
21
+  </component>
22
+</project>

+ 3
- 0
.idea/copyright/profiles_settings.xml View File

@@ -0,0 +1,3 @@
1
+<component name="CopyrightManager">
2
+  <settings default="" />
3
+</component>

+ 19
- 0
.idea/misc.xml View File

@@ -0,0 +1,19 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="EntryPointsManager">
4
+    <entry_points version="2.0" />
5
+  </component>
6
+  <component name="ProjectLevelVcsManager" settingsEditedManually="false">
7
+    <OptionsSetting value="true" id="Add" />
8
+    <OptionsSetting value="true" id="Remove" />
9
+    <OptionsSetting value="true" id="Checkout" />
10
+    <OptionsSetting value="true" id="Update" />
11
+    <OptionsSetting value="true" id="Status" />
12
+    <OptionsSetting value="true" id="Edit" />
13
+    <ConfirmationsSetting value="0" id="Add" />
14
+    <ConfirmationsSetting value="0" id="Remove" />
15
+  </component>
16
+  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="true" assert-keyword="true" jdk-15="true" project-jdk-name="1.8" project-jdk-type="JavaSDK">
17
+    <output url="file://$PROJECT_DIR$/out" />
18
+  </component>
19
+</project>

+ 8
- 0
.idea/modules.xml View File

@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project version="4">
3
+  <component name="ProjectModuleManager">
4
+    <modules>
5
+      <module fileurl="file://$PROJECT_DIR$/uqac-java-pigeon.iml" filepath="$PROJECT_DIR$/uqac-java-pigeon.iml" />
6
+    </modules>
7
+  </component>
8
+</project>

+ 23
- 0
src/com/rthoni/uqac/pigeon/Main.java View File

@@ -0,0 +1,23 @@
1
+package com.rthoni.uqac.pigeon;
2
+
3
+import javax.swing.*;
4
+
5
+/**
6
+ * Created by robin on 10/29/16.
7
+ */
8
+public class Main {
9
+
10
+    static void initGui()
11
+    {
12
+        JFrame frame = new JFrame("Threads Over Pigeons");
13
+        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
14
+
15
+        frame.pack();
16
+        frame.setVisible(true);
17
+    }
18
+
19
+    public static void main(String... argv)
20
+    {
21
+        SwingUtilities.invokeLater(Main::initGui);
22
+    }
23
+}

+ 11
- 0
uqac-java-pigeon.iml View File

@@ -0,0 +1,11 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<module type="JAVA_MODULE" version="4">
3
+  <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+    <exclude-output />
5
+    <content url="file://$MODULE_DIR$">
6
+      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
7
+    </content>
8
+    <orderEntry type="inheritedJdk" />
9
+    <orderEntry type="sourceFolder" forTests="false" />
10
+  </component>
11
+</module>

Loading…
Cancel
Save