<?php
/**
*
*
* Author : Sunish Kumar M.V
*
* This is licenced under LGPL licence.
*
**/
class Text extends Component {
function __construct($nm,$val){
parent::__construct($nm,$val);
}
function clear() {
$this->valChanged = true;
$this->value ="";
}
}
?>