function RigaConChiave(chiave,altri) {
	this.inizializza(altri);
	this.chiave="";
	if (chiave!=null)
		this.chiave=chiave;
};

RigaConChiave.prototype.__proto__ = Riga.prototype;
RigaConChiave.prototype = new Riga();
RigaConChiave.prototype.constructor = RigaConChiave;

RigaConChiave.prototype.valoreChiave = function (){
	return this.chiave;
}

