diff --git a/.idea/Orbit Simulator v2.iml b/.idea/Orbit Simulator v2.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/Orbit Simulator v2.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..15fd979 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..93228fb --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..0042750 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1467700355732 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/simulator/.idea/compiler.xml b/simulator/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/simulator/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/simulator/.idea/copyright/profiles_settings.xml b/simulator/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/simulator/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/simulator/.idea/description.html b/simulator/.idea/description.html new file mode 100644 index 0000000..db5f129 --- /dev/null +++ b/simulator/.idea/description.html @@ -0,0 +1 @@ +Simple Java application that includes a class with main() method \ No newline at end of file diff --git a/simulator/.idea/misc.xml b/simulator/.idea/misc.xml new file mode 100644 index 0000000..e29b6f0 --- /dev/null +++ b/simulator/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/simulator/.idea/modules.xml b/simulator/.idea/modules.xml new file mode 100644 index 0000000..3027981 --- /dev/null +++ b/simulator/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/simulator/.idea/project-template.xml b/simulator/.idea/project-template.xml new file mode 100644 index 0000000..1f08b88 --- /dev/null +++ b/simulator/.idea/project-template.xml @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/simulator/.idea/workspace.xml b/simulator/.idea/workspace.xml new file mode 100644 index 0000000..af754cc --- /dev/null +++ b/simulator/.idea/workspace.xml @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1467700295902 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/simulator/out/production/simulator/com/verictas/pos/simulator/Main.class b/simulator/out/production/simulator/com/verictas/pos/simulator/Main.class new file mode 100644 index 0000000..7b9fea4 Binary files /dev/null and b/simulator/out/production/simulator/com/verictas/pos/simulator/Main.class differ diff --git a/simulator/simulator.iml b/simulator/simulator.iml new file mode 100644 index 0000000..d5c0743 --- /dev/null +++ b/simulator/simulator.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/simulator/src/com/verictas/pos/simulator/Main.java b/simulator/src/com/verictas/pos/simulator/Main.java new file mode 100644 index 0000000..997ebaf --- /dev/null +++ b/simulator/src/com/verictas/pos/simulator/Main.java @@ -0,0 +1,8 @@ +package com.verictas.pos.simulator; + +public class Main { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +}