Skip to content

Commit 6deb6b9

Browse files
committed
Base commit with project settings
1 parent a8a2b21 commit 6deb6b9

File tree

11 files changed

+93
-1
lines changed

11 files changed

+93
-1
lines changed

.classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4+
<classpathentry kind="src" path="/DesignPatternsJava9/src"/>
5+
<classpathentry kind="output" path="bin"/>
6+
</classpath>

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Compiled class file
2+
.idea/*
23
*.class
34

45
# Log file
56
*.log
6-
7+
*.iws
78
# BlueJ files
89
*.ctxt
910

.project

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>DesignPatternsJava9</name>
4+
<comment/>
5+
<projects/>
6+
<buildSpec>
7+
<buildCommand>
8+
<name>org.eclipse.jdt.core.javabuilder</name>
9+
<arguments/>
10+
</buildCommand>
11+
</buildSpec>
12+
<natures>
13+
<nature>org.eclipse.jdt.core.javanature</nature>
14+
</natures>
15+
</projectDescription>

DesignPatternsJava9.eml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<component inheritJdk="true">
3+
<exclude-output/>
4+
<contentEntry url="file://$MODULE_DIR$"/>
5+
</component>

DesignPatternsJava9.iml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module classpath="eclipse" classpath-dir="$MODULE_DIR$" type="JAVA_MODULE" version="4" />

pattern/pattern.iml

+11
Original file line numberDiff line numberDiff line change
@@ -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="jdk" jdkName="9.0" jdkType="JavaSDK" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
</component>
11+
</module>

pattern/src/com/premaseem/Client.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.premaseem;
2+
3+
/*
4+
@author: Aseem Jain
5+
@title: Design Patterns with Java 9
6+
@link: https://premaseem.wordpress.com/category/computers/design-patterns/
7+
@copyright: 2018 Packt Publication
8+
*/
9+
public class Client {
10+
public static void main (String[] args) {
11+
System.out.println("Singleton cook example ");
12+
}
13+
}

pattern/src/module-info.java

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
@author: Aseem Jain
3+
@title: Design Patterns with Java 9
4+
@link: https://premaseem.wordpress.com/category/computers/design-patterns/
5+
@copyright: 2018 Packt Publication
6+
*/
7+
module pattern {
8+
}

patternBonus/patternBonus.iml

+11
Original file line numberDiff line numberDiff line change
@@ -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>
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.premaseem;
2+
3+
/*
4+
@author: Aseem Jain
5+
@title: Design Patterns with Java 9
6+
@link: https://premaseem.wordpress.com/category/computers/design-patterns/
7+
@copyright: 2018 Packt Publication
8+
*/
9+
public class Client {
10+
public static void main (String[] args) {
11+
System.out.println("Singleton cook example ");
12+
}
13+
}

patternBonus/src/module-info.java

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
@author: Aseem Jain
3+
@title: Design Patterns with Java 9
4+
@link: https://premaseem.wordpress.com/category/computers/design-patterns/
5+
*/
6+
module patternBonus {
7+
}

0 commit comments

Comments
 (0)