/**
 * @author pfigueiredo
 */
KAnimation.prototype.localization = new Array();

function KAnimation() {
	this.target = null;
	this.state = 'stopped';
	this.actionStack = new Array();
}

KAnimation.prototype.init = function(target) {
	this.target = target;
}

KAnimation.prototype.checkActionStack = function() {
}

KAnimation.prototype.animate = function() {
}

KAnimation.prototype.goIn = function() {
}

KAnimation.prototype.goOut = function() {
}

KAnimation.prototype.onData  = function(e, source) {
}

KAnimation.prototype.onSetup  = function(e, source) {
}

KAnimation.prototype.onStart  = function(e, source) {
}

KAnimation.prototype.onStop  = function(e, source) {
}
