相关代码 |
|
package com.wxd.common.popedom.domain.command; public abstract class AbstractCommand implements Command { protected CommandContext context; public CommandContext getContext() { // TODO Auto-generated method stub return context; } public abstract void setContext(CommandContext commandContext); }