package FMM; public class BusinessStrategy { public BusinessStrategy(String name) { this.name = name; } public String name; public BusinessProcessBuildingBlock bpt; public EvaluationStrategy st; /* public void BusinessStrategy() { bpt = new BusinessProcessTemplate(); st = new Strategy(); }*/ // perhap we don't need it because these variable must point to the object which are already created somewhere else }