summaryrefslogtreecommitdiff
path: root/framework/Web/UI/TControl.php
diff options
context:
space:
mode:
authormikl <>2008-04-17 16:16:03 +0000
committermikl <>2008-04-17 16:16:03 +0000
commit2ff1a4bcb650b0dce241c2d947fbf59759c2efff (patch)
treeadc1c4fa758f67f5c404f7f1d320fd5dbf8296e9 /framework/Web/UI/TControl.php
parent5f6f3f560b826b6b4f9f98bb4e83724b28e454d6 (diff)
Fixed #622
Diffstat (limited to 'framework/Web/UI/TControl.php')
-rw-r--r--framework/Web/UI/TControl.php18
1 files changed, 17 insertions, 1 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php
index d43ddf10..f20cd2d1 100644
--- a/framework/Web/UI/TControl.php
+++ b/framework/Web/UI/TControl.php
@@ -2152,6 +2152,22 @@ interface IButtonControl
}
/**
+ * IControlContainer interface
+ *
+ * If a control can have an additional surrounding tag, it should implement this interface.
+ *
+ * @package System.Web.UI
+ * @since 3.1.2
+ */
+interface IControlContainer
+{
+ /**
+ * @return string the id of the container html tag or of the input control itself if no container present.
+ */
+ public function getContainerClientID();
+}
+
+/**
* TBroadcastEventParameter class
*
* TBroadcastEventParameter encapsulates the parameter data for
@@ -2358,4 +2374,4 @@ class TCompositeLiteral extends TComponent implements IRenderable, IBindable
}
}
-?> \ No newline at end of file
+?>