<?php
/*
 * Created on 5/05/2006
 */

class TActivePanel extends TPanel
{
	/**
	 * Creates a new callback control, sets the adapter to
	 * TActiveControlAdapter. If you override this class, be sure to set the
	 * adapter appropriately by, for example, by calling this constructor.
	 */
	public function __construct()
	{
		parent::__construct();
		$this->setAdapter(new TActiveControlAdapter($this));
	}
	
	public function getActiveControl()
	{
		return $this->getAdapter()->getActiveControl();
	}
} 

?>