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

com.github.celldynamics.quimp.filesystem.IQuimpSerialize 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.filesystem;

/**
 * Interface that is required by Serializer class.
 * 
 * 

Serializer class calls methods from this interface before and after serialization. The main * purpose of these method is to allow to rebuild objects after restoration or to prepare them * before saving. * * @author p.baniukiewicz * */ public interface IQuimpSerialize { /** * This method is called just before JSON is generated. * * @see com.github.celldynamics.quimp.Serializer#save(String) */ public void beforeSerialize(); /** * This method is called after restoring object from JSON but before returning the object. * * @throws Exception from wrapped object in any problem. This is implementation dependent * @see com.github.celldynamics.quimp.Serializer#load(String) */ public void afterSerialize() throws Exception; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy