From 6deb6b92c847bf45b6a3fb99ec07b79e20ed1e45 Mon Sep 17 00:00:00 2001 From: Aseem Jain Date: Thu, 18 Jan 2018 11:49:28 -0600 Subject: [PATCH] Base commit with project settings --- .classpath | 6 ++++++ .gitignore | 3 ++- .project | 15 +++++++++++++++ DesignPatternsJava9.eml | 5 +++++ DesignPatternsJava9.iml | 2 ++ pattern/pattern.iml | 11 +++++++++++ pattern/src/com/premaseem/Client.java | 13 +++++++++++++ pattern/src/module-info.java | 8 ++++++++ patternBonus/patternBonus.iml | 11 +++++++++++ patternBonus/src/com/premaseem/Client.java | 13 +++++++++++++ patternBonus/src/module-info.java | 7 +++++++ 11 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 .classpath create mode 100644 .project create mode 100644 DesignPatternsJava9.eml create mode 100644 DesignPatternsJava9.iml create mode 100644 pattern/pattern.iml create mode 100644 pattern/src/com/premaseem/Client.java create mode 100644 pattern/src/module-info.java create mode 100644 patternBonus/patternBonus.iml create mode 100644 patternBonus/src/com/premaseem/Client.java create mode 100644 patternBonus/src/module-info.java diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..f06d999 --- /dev/null +++ b/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/.gitignore b/.gitignore index 6143e53..719dd1d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ # Compiled class file +.idea/* *.class # Log file *.log - +*.iws # BlueJ files *.ctxt diff --git a/.project b/.project new file mode 100644 index 0000000..a33e785 --- /dev/null +++ b/.project @@ -0,0 +1,15 @@ + + + DesignPatternsJava9 + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.jdt.core.javanature + + diff --git a/DesignPatternsJava9.eml b/DesignPatternsJava9.eml new file mode 100644 index 0000000..c4aadb7 --- /dev/null +++ b/DesignPatternsJava9.eml @@ -0,0 +1,5 @@ + + + + + diff --git a/DesignPatternsJava9.iml b/DesignPatternsJava9.iml new file mode 100644 index 0000000..6d59135 --- /dev/null +++ b/DesignPatternsJava9.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/pattern/pattern.iml b/pattern/pattern.iml new file mode 100644 index 0000000..e6d0514 --- /dev/null +++ b/pattern/pattern.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/pattern/src/com/premaseem/Client.java b/pattern/src/com/premaseem/Client.java new file mode 100644 index 0000000..15f05df --- /dev/null +++ b/pattern/src/com/premaseem/Client.java @@ -0,0 +1,13 @@ +package com.premaseem; + +/* +@author: Aseem Jain +@title: Design Patterns with Java 9 +@link: https://premaseem.wordpress.com/category/computers/design-patterns/ +@copyright: 2018 Packt Publication +*/ +public class Client { + public static void main (String[] args) { + System.out.println("Singleton cook example "); + } +} diff --git a/pattern/src/module-info.java b/pattern/src/module-info.java new file mode 100644 index 0000000..939a84b --- /dev/null +++ b/pattern/src/module-info.java @@ -0,0 +1,8 @@ +/* +@author: Aseem Jain +@title: Design Patterns with Java 9 +@link: https://premaseem.wordpress.com/category/computers/design-patterns/ +@copyright: 2018 Packt Publication +*/ +module pattern { +} \ No newline at end of file diff --git a/patternBonus/patternBonus.iml b/patternBonus/patternBonus.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/patternBonus/patternBonus.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/patternBonus/src/com/premaseem/Client.java b/patternBonus/src/com/premaseem/Client.java new file mode 100644 index 0000000..15f05df --- /dev/null +++ b/patternBonus/src/com/premaseem/Client.java @@ -0,0 +1,13 @@ +package com.premaseem; + +/* +@author: Aseem Jain +@title: Design Patterns with Java 9 +@link: https://premaseem.wordpress.com/category/computers/design-patterns/ +@copyright: 2018 Packt Publication +*/ +public class Client { + public static void main (String[] args) { + System.out.println("Singleton cook example "); + } +} diff --git a/patternBonus/src/module-info.java b/patternBonus/src/module-info.java new file mode 100644 index 0000000..e41318b --- /dev/null +++ b/patternBonus/src/module-info.java @@ -0,0 +1,7 @@ +/* +@author: Aseem Jain +@title: Design Patterns with Java 9 +@link: https://premaseem.wordpress.com/category/computers/design-patterns/ +*/ +module patternBonus { +} \ No newline at end of file