mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-17 22:59:43 +00:00
added bridge sample
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package com.iluwatar;
|
||||
|
||||
public abstract class MagicWeaponImp {
|
||||
|
||||
public abstract void wieldImp();
|
||||
|
||||
public abstract void swingImp();
|
||||
|
||||
public abstract void unwieldImp();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user