/**
 * Entrie prototype
 */

//One entry
var entriePrototype = function () {
	
//Constructor
	this.idDoc;
	this.field;
	this.startPos;
	this.length;
	
//Public methods

	//Import object from xml
	this.importFromXml = function(xml){
		this.idDoc			= $(xml).attr('idDoc');
		this.field			= $(xml).attr('field');
		this.startPos		= $(xml).attr('startPos');
		this.length			= $(xml).attr('length');
	};
};
