var TextInput=function(){
	
	this.Extends = FormInput;
	
	/**
	 * 
	 * PUBLIC
	 * 
	 * */
	
	this.initialize=function(elemento/*Element*/,nome/*String*/,mensagemErro/*String*/){
		this.parent(elemento,nome,mensagemErro);
	};
	
	/**
	 * @return String
	 * */
	
	this.getValor=function(){
		return this.elemento.get("value");
	};
	
	/**
	 * 
	 * PROTECTED
	 * 
	 * */
	
	this.criarValidador=function()/*ValidadorInput*/{
		return new ValidadorTextInput();
	};
};

TextInput = new Class(new TextInput);
