Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
premaseem committed Aug 2, 2018
1 parent a8a2b21 commit eb1bbc7
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="src" path="/DesignPatternsJava9/src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Compiled class file
.idea/*
*.class

# Log file
*.log

*.iws
# BlueJ files
*.ctxt

Expand Down
15 changes: 15 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>DesignPatternsJava9</name>
<comment/>
<projects/>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments/>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
6 changes: 6 additions & 0 deletions DesignPatternsJava9.eml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<component inheritJdk="true">
<output-test url="file://$MODULE_DIR$/bin/test/DesignPatternsJava9"/>
<exclude-output/>
<contentEntry url="file://$MODULE_DIR$"/>
</component>
13 changes: 13 additions & 0 deletions DesignPatternsJava9.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager">
<output url="file://$MODULE_DIR$/bin/production/DesignPatternsJava9" />
<output-test url="file://$MODULE_DIR$/bin/test/DesignPatternsJava9" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# DesignPatternsJava9
This repo consists Gang of Four Design patterns code on Java 9. Each branch in the repository has code of 1 design pattern. Switch repository to try out different design patterns.
This repository contains working code examle used for Video Course by Packt Publication with title "Learn Design Patterns with Java " authored by "Aseem Jain".

The link of the course is https://www.packtpub.com/application-development/learn-design-patterns-java-9-video

This repository has several branches and each branch contains code of a design pattern.

To look at code of Decorator pattern you might have to switch to branch decorator pattern eg. link https://github.com/premaseem/DesignPatternsJava9/tree/decorator-pattern

Note: This code base will work on Java 9 and above versions.

0 comments on commit eb1bbc7

Please sign in to comment.