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

de.unirostock.sems.bives.ds.GraphEntity Maven / Gradle / Ivy

Go to download

BiVeS - BioModel Version Control System This package provides core functionality

The newest version!
/**
 * 
 */
package de.unirostock.sems.bives.ds;


/**
 * @author Martin Scharm
 *
 */
public interface GraphEntity
{
	
	/** The flag for UNMODIFIED entities. */
	public static final int UNMODIFIED = 0;
	
	/** The flag for INSERTed entities. */
	public static final int INSERT = 1;
	
	/** The flag for DELETEd entities. */
	public static final int DELETE = -1;
	
	/** The flag for MODIFIED entities. */
	public static final int MODIFIED = 2;
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy