The editor will only maintain one modal tool in the "enabled" state at one time.
To respond to additional stimulus please override your constuctor to call AbstractModalTool( targets ):
public class MyTool extends AbstractModalTool { public MyTool(){ // default consturctor called by extention point super( MOUSE | WHEEL ); } ... }