From f6b22febb41b3f552e36d5d0190ce8672b4d6d6e Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 20 Jan 2015 22:54:21 +0100 Subject: one class per file: framework/Web/UI/*.php --- framework/Web/UI/ISurroundable.php | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 framework/Web/UI/ISurroundable.php (limited to 'framework/Web/UI/ISurroundable.php') diff --git a/framework/Web/UI/ISurroundable.php b/framework/Web/UI/ISurroundable.php new file mode 100644 index 00000000..42be16bb --- /dev/null +++ b/framework/Web/UI/ISurroundable.php @@ -0,0 +1,27 @@ + + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package System.Web.UI + */ + +/** + * ISurroundable 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 ISurroundable +{ + /** + * @return string the id of the embedding tag of the control or the control's clientID if not surrounded + */ + public function getSurroundingTagID(); +} \ No newline at end of file -- cgit v1.2.3