All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.celldynamics.quimp.plugin.IQuimpPluginSynchro Maven / Gradle / Ivy

Go to download

QuimP software, a set of plugins for ImageJ to quantify spatio-temporal patterns of fluorescently labeled proteins in the cortex of moving cells.

The newest version!
package com.github.celldynamics.quimp.plugin;

import com.github.celldynamics.quimp.SnakePluginList;
import com.github.celldynamics.quimp.ViewUpdater;

/**
 * The interface that add synchronisation between plugin and QuimP.
 * 
 * 

Plugin can refresh main QuimP screen and redraw its content. Every outline is processed by all * active plugins and then redrawn on QuimP main screen. Additionally current plugin configuration * is transferred and stored in QuimP. * * @author p.baniukiewicz * @see SnakePluginList */ public interface IQuimpPluginSynchro { /** * Pass to plugin ViewUpdater object which is accessor to selected methods from QuimP interface. * *

The main role of ViewUpdater is to limit methods that plugin can call to avoid accidental * data destruction. * * @param b Reference to ViewUpdater that holds selected methods from main QuimP object * @see ViewUpdater to check what methods are exposed to plugin. */ void attachContext(final ViewUpdater b); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy