<div dir="ltr">Hi Stefan,<div><br></div><div>Thanks. Rather than doing this:</div><div><br></div><div>  CommandInfo testopInfo = new CommandInfo(IJTestOp.class.getName());</div><div>  testopModule = (CommandModule) testopInfo.createModule();<br>

</div><div><br></div><div>I suggest instead:</div><div><br></div><div>  CommandInfo testopInfo = commandService.getCommand(IJTestOp.class);</div><div>  testopModule = (CommandModule) moduleService.createModule(testopInfo);</div>

<div><br></div><div>Otherwise, you will have lots of problems because the created module will not know its context. If you use the service methods, all the injections are taken care of for you; see:</div><div><br></div><div>

   <a href="https://github.com/imagej/imagej/blob/imagej-2.0.0-beta-7.9/core/core/src/main/java/imagej/module/DefaultModuleService.java#L150">https://github.com/imagej/imagej/blob/imagej-2.0.0-beta-7.9/core/core/src/main/java/imagej/module/DefaultModuleService.java#L150</a></div>

<div><br></div><div>Also, rather than:</div><div><br></div><div>  testopModule.setInput("ivalIn", 321);</div><div>  testopModule.getCommand().run();</div><div><br></div><div>I would use the service method:</div>

<div><br></div><div>  moduleService.run(testopModule, false, "ivalIn", 321);</div><div><br></div><div>Regards,</div><div>Curtis</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Apr 10, 2014 at 3:13 PM, Stefan Posch <span dir="ltr"><<a href="mailto:posch@informatik.uni-halle.de" target="_blank">posch@informatik.uni-halle.de</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">sorry. I forgot to attach the project ... here it comes.<br>
<span class="HOEnZb"><font color="#888888"><br>
Stefan<br>
</font></span><br>_______________________________________________<br>
ImageJ-devel mailing list<br>
<a href="mailto:ImageJ-devel@imagej.net">ImageJ-devel@imagej.net</a><br>
<a href="http://imagej.net/mailman/listinfo/imagej-devel" target="_blank">http://imagej.net/mailman/listinfo/imagej-devel</a><br>
<br></blockquote></div><br></div>