File tree Expand file tree Collapse file tree 7 files changed +71
-4
lines changed
Expand file tree Collapse file tree 7 files changed +71
-4
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<module type =" JAVA_MODULE" version =" 4" >
33 <component name =" NewModuleRootManager" >
4- <output url =" file://$MODULE_DIR$/bin/production/DesignPatternsJava9" />
5- <output-test url =" file://$MODULE_DIR$/bin/test/DesignPatternsJava9" />
4+ <output url =" file://$MODULE_DIR$/bin" />
65 <exclude-output />
76 <content url =" file://$MODULE_DIR$" >
8- <sourceFolder url =" file://$MODULE_DIR$/src" isTestSource =" false" />
7+ <sourceFolder url =" file://$MODULE_DIR$/pattern" isTestSource =" false" />
8+ <sourceFolder url =" file://$MODULE_DIR$/patternBonus" isTestSource =" false" />
99 </content >
10- <orderEntry type =" inheritedJdk" />
1110 <orderEntry type =" sourceFolder" forTests =" false" />
11+ <orderEntry type =" inheritedJdk" />
12+ <orderEntry type =" module" module-name =" DesignPatternsJava9" />
1213 </component >
1314</module >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ package com .premaseem ;
2+
3+ /*
4+ @author: Aseem Jain
5+ @title: Design Patterns with Java
6+ @link: https://www.packtpub.com/application-development/learn-design-patterns-java-9-video
7+ */
8+ public class ClientMain {
9+ public static void main (String [] args ) {
10+ System .out .println ("Welcome to the course ;-) " );
11+ System .out .println ("If you are able to run this then you are all set to begin " +
12+ "(if not then use Java 10 JDK) " );
13+ System .out .println ("This module will have the working project example using the Design " +
14+ "principle as the name of branch eg. single design pattern" );
15+ }
16+ }
Original file line number Diff line number Diff line change 1+ /*
2+ @author: Aseem Jain
3+ @title: Design Patterns with Java
4+ @link: https://www.packtpub.com/application-development/learn-design-patterns-java-9-video
5+ */
6+ module pattern {
7+ }
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ package com .premaseem ;
2+
3+ /*
4+ @author: Aseem Jain
5+ @title: Design Patterns with Java
6+ @link: https://www.packtpub.com/application-development/learn-design-patterns-java-9-video
7+ */
8+ public class ClientMain {
9+ public static void main (String [] args ) {
10+ System .out .println ("This module is called as Pattern Bonus" );
11+ System .out .println ("As name suggests, It will have a bonus working example of design pattern " +
12+ "presented only to you ;-) " );
13+ }
14+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments