/**
  * Short description for function
  * 
  * Long description (if any) ...
  * 
  * @return void  
  * @access public
  */
 function init()
 {
     // Store the class type.
     parent::init('tbl_decisiontable_condition');
     $this->objConditionType = $this->newObject('conditiontype', 'decisiontable');
     $this->_objRuleCondition = $this->newObject('dbrulecondition', 'decisiontable');
 }
 /**
  * Short description for function
  * 
  * Long description (if any) ...
  * 
  * @return void  
  * @access public
  */
 function init()
 {
     parent::init('tbl_decisiontable_conditiontype');
     //$this->create( 'setValue', 'condition','decisiontable' ); $this->insert();
 }
 /**
  * The object initialization method.
  *
  * @access public 
  * @param  string 
  * @return nothing
  */
 public function init($tableName)
 {
     parent::init($tableName);
     $this->_arrChildren = array();
 }