--
You received this message because you are subscribed to a topic in the Google Groups "Icy imaging" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/icy-software/mjE0Q5LlhfA/unsubscribe?hl=en.
To unsubscribe from this group and all its topics, send an email to icy-software...@googlegroups.com.
To post to this group, send email to icy-so...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/icy-software/-/tgSG3o7XlKUJ.
For more options, visit https://groups.google.com/groups/opt_out.
package plugins.fab.fly3d;
import icy.plugin.abstract_.PluginActionable;
public class Test extends PluginActionable {
@Override
public void run() {
// TODO Auto-generated method stub
}
}
package plugins.fab.ringroi;
import plugins.adufour.ezplug.EzPlug;
public class Test extends EzPlug{
@Override
public void clean() {
// TODO Auto-generated method stub
}
@Override
protected void execute() {
// TODO Auto-generated method stub
}
@Override
protected void initialize() {
// TODO Auto-generated method stub
}
}
package plugins.fab.colocalizer;
import icy.plugin.abstract_.Plugin;
import plugins.adufour.blocks.lang.Block;
import plugins.adufour.blocks.util.VarList;
public class Test extends Plugin implements Block {
@Override
public void run() {
// TODO Auto-generated method stub
}
@Override
public void declareInput(VarList inputMap) {
// TODO Auto-generated method stub
}
@Override
public void declareOutput(VarList outputMap) {
// TODO Auto-generated method stub
}
}
Hi Perrine,
About your connection which stay alive, i guess it depends about how you designed your plugin.
I guess you have a graphical interface in both of your plugin (IJ and Icy).
If the connection object is inside your GUI then it won't be released until you close the GUI. I can't explain why it does not behave the same way in ImageJ though...
PluginImageAnalysis should be replaced with PluginActionable now, normally javadoc give tips about what you should use instead when you meet deprecated classes or methods :) Unfortunately the documention and the tutorials are quite outdated but that is something we will change soon !
Glad you appreciate the eclipse development environment we defined for Icy :) It is actually not easy to deal with plugin development but we try to keep it as simple we can !
Cheers,
- Stephane
Le mercredi 17 avril 2013 10:02:56 UTC+2, Perrine Paul-Gilloteaux a écrit :
To view this discussion on the web visit https://groups.google.com/d/msg/icy-software/-/HwFNqJMofo0J.