diff options
author | mikl <> | 2008-04-18 09:47:05 +0000 |
---|---|---|
committer | mikl <> | 2008-04-18 09:47:05 +0000 |
commit | a54dcaa9d7fbdc7a3f14d33ef3cf36feb29f9f39 (patch) | |
tree | 389492db2141c82a9a46d06d692816adf26077c0 /framework/Web/UI/TControl.php | |
parent | 8b3b214c305ab78b1942e080b4d6543ff4060bf8 (diff) |
Renamed IControlContainer to ISurroundable
Diffstat (limited to 'framework/Web/UI/TControl.php')
-rw-r--r-- | framework/Web/UI/TControl.php | 11 |
1 files changed, 6 insertions, 5 deletions
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();
}
/**
|