On 23-09-15 11:30, Andrei Chis wrote:
Hi Stephan,

Right now you can just filter processors in spotter:

GTSpotterMorph new
extent: 600@700;
spotterModel: (GTSpotter
on: Object>>#printString
withProcessors: {
CompiledMethod>>#spotterForImplementorsFor:});
openCenteredInWorld.

However this does not work if you need to override properties of a search,
like actLogic.

An alternative would be also add a way to override properties of a search,
like for example:

GTSpotterMorph new
extent: 600@700;
spotterModel: (GTSpotter
on: Object>>#printString
withProcessor: {
CompiledMethod>>#spotterForImplementorsFor:}
initializedWith: [:aProcessor | aProcessor
candidatesLimit: 100;
actLogic: [""] ]);
openCenteredInWorld

Thanks, that provides me with the right hooks.

Stephan



Reply via email to