Practical-Design-Patterns-for-Java-Developers/Chapter04 at main · mirage22/Practical-Design-Patterns-for-Java-Developers · GitHub
Skip to content

Latest commit

 

History

History
 
 

Folders and files

HowToCompileAndExecuteCode

Chapter 4 - structural pattern examples

# Adapter 
$ javac --release 17 --enable-preview -g -cp out/Chapter04/adapter -sourcepath java -d out/Chapter04/adapter ./Chapter04/adapter/*.java
$ java --enable-preview -cp out/Chapter04/adapter AdapterMain

# Bridge
$ javac --release 17 --enable-preview -g -cp out/Chapter04/bridge -sourcepath java -d out/Chapter04/bridge ./Chapter04/bridge/*.java
$ java --enable-preview -cp out/Chapter04/bridge BridgeMain

# Composite
$ javac --release 17 --enable-preview -g -cp out/Chapter04/composite -sourcepath java -d out/Chapter04/composite ./Chapter04/composite/*.java
$ java --enable-preview -cp out/Chapter04/composite CompositeMain

# Decorator
$ javac --release 17 --enable-preview -g -cp out/Chapter04/decorator -sourcepath java -d out/Chapter04/decorator ./Chapter04/decorator/*.java
$ java --enable-preview -cp out/Chapter04/decorator DecoratorMain

# Facade
$ javac --release 17 --enable-preview -g -cp out/Chapter04/facade -sourcepath java -d out/Chapter04/facade ./Chapter04/facade/*.java
$ java --enable-preview -cp out/Chapter04/facade FacadeMain

# Filter
$ javac --release 17 --enable-preview -g -cp out/Chapter04/filter -sourcepath java -d out/Chapter04/filter ./Chapter04/filter/*.java
$ java --enable-preview -cp out/Chapter04/filter FilterMain

# Flyweight
$ javac --release 17 --enable-preview -g -cp out/Chapter04/flyweight -sourcepath java -d out/Chapter04/flyweight ./Chapter04/flyweight/*.java
$ java --enable-preview -cp out/Chapter04/flyweight FlyweightMain

# Front controller
$ javac --release 17 --enable-preview -g -cp out/Chapter04/front_controller -sourcepath java -d out/Chapter04/front_controller ./Chapter04/front_controller/*.java
$ java --enable-preview -cp out/Chapter04/front_controller FrontControllerMain

# Marker
$ javac --release 17 --enable-preview -g -cp out/Chapter04/marker -sourcepath java -d out/Chapter04/marker ./Chapter04/marker/*.java
$ java --enable-preview -cp out/Chapter04/marker MarkerMain

# Module
$ javac --release 17 --enable-preview -g -cp out/Chapter04/module -sourcepath java -d out/Chapter04/module ./Chapter04/module/*.java
$ java --enable-preview -cp out/Chapter04/module ModuleMain

# Proxy
$ javac --release 17 --enable-preview -g -cp out/Chapter04/proxy -sourcepath java -d out/Chapter04/proxy ./Chapter04/proxy/*.java
$ java --enable-preview -cp out/Chapter04/proxy ProxyMain

# Twin
$ javac --release 17 --enable-preview -g -cp out/Chapter04/twin -sourcepath java -d out/Chapter04/twin ./Chapter04/twin/*.java
$ java --enable-preview -cp out/Chapter04/twin TwinMain