NOTICE! This is a static HTML version of a legacy ImageJ Trac ticket.

The ImageJ project now uses GitHub Issues for issue tracking.

Please file all new issues there.

Ticket #694 (closed enhancement: fixed)

Opened 2011-07-27T10:04:48-05:00

Last modified 2011-07-27T15:52:15-05:00

Add invoke methods with explicit parameter values

Reported by: curtis Owned by: curtis
Priority: major Milestone: biweekly-2011: Jul-18 to Jul-29
Component: Plugin Framework Version:
Severity: non-issue Keywords:
Cc: gharris Blocked By:
Blocking:

Description

Grant wrote an InvokePluginTest plugin that attempts to invoke NewImage programmatically by feeding it fixed parameters. As part of this code, he wrote an invoke(String plugin, final Object... parameters) method which should be generalized to any module, and made part of ModuleService and PluginService.

Change History

comment:1 Changed 2011-07-27T15:52:15-05:00 by curtis

  • Status changed from new to closed
  • Resolution set to fixed

Fixed in a339895e78474dfc160e7acec08fd5f6ad94aab8. As of 658b7b2fbd1cb29df51ed716a383feb7cb190795, run methods return the applicable Module instance. As of 30eac3c7aa6173c4604e1cb55204b6733c78500d, the InvokePluginTest example was updated to use the new methods.