mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 18:58:44 +00:00
14 lines
258 B
Java
14 lines
258 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Tobacco abstraction
|
|
*
|
|
*/
|
|
public abstract class Tobacco {
|
|
|
|
public void smoke(Wizard wizard) {
|
|
System.out.println(String.format("%s smoking %s", wizard.getClass().getSimpleName(), this.getClass().getSimpleName()));
|
|
}
|
|
}
|