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

fr.inria.edelweiss.kgraph.api.Log Maven / Gradle / Ivy

The newest version!
package fr.inria.edelweiss.kgraph.api;

import java.util.List;


public interface Log {
	
	public static final int LOAD 	= 0;
	public static final int QUERY 	= 1;
	public static final int UPDATE  = 2;	
	
	void reset();	
	
	void log(int type, Object obj);
	
	void log(int type, Object obj1, Object obj2);

	List get(int type);
	
	
}