workingMemory.insert(factObject));
}
});
}
} else if (fixture instanceof RetractFact) {
RetractFact retractFact = (RetractFact) fixture;
this.workingMemory.retract(this.factHandles.get(retractFact.getName()));
this.populatedData.remove(retractFact.getName());
} else if (fixture instanceof CallMethod) {
CallMethod aCall = (CallMethod) (fixture);
Object targetInstance = populatedData.get(aCall.getVariable());
executeMethodOnObject(aCall,
targetInstance);