- package com.company.section5;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- */
- public class ConcreteImplementor2 implements Implementor{
- public void doSomething(){
- //业务逻辑处理
- }
- public void doAnything(){
- //业务逻辑处理
- }
- }