From a54dcaa9d7fbdc7a3f14d33ef3cf36feb29f9f39 Mon Sep 17 00:00:00 2001 From: mikl <> Date: Fri, 18 Apr 2008 09:47:05 +0000 Subject: Renamed IControlContainer to ISurroundable --- framework/Web/UI/TControl.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'framework/Web/UI/TControl.php') diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php index f20cd2d1..0e95e2b5 100644 --- a/framework/Web/UI/TControl.php +++ b/framework/Web/UI/TControl.php @@ -2152,19 +2152,20 @@ interface IButtonControl } /** - * IControlContainer interface + * ISurroundable interface * - * If a control can have an additional surrounding tag, it should implement this interface. + * Identifies controls that may create an additional surrounding tag. The id of the + * tag can be obtained with {@link getSurroundingTagID}. * * @package System.Web.UI * @since 3.1.2 */ -interface IControlContainer +interface ISurroundable { /** - * @return string the id of the container html tag or of the input control itself if no container present. + * @return string the id of the embedding tag of the control or the control's clientID if not surrounded */ - public function getContainerClientID(); + public function getSurroundingTagID(); } /** -- cgit v1.2.3