diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-20 22:43:27 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-01-20 22:43:27 +0100 |
commit | 464a235c8c7dc070fb10ac47f2186f24a077ae0d (patch) | |
tree | 373c609aaa4ef489db51f6a0a089451fc80af472 /framework/Web/UI/JuiControls/IJuiOptions.php | |
parent | 7369988330bf8796d9cf2564756baf4eb46871ba (diff) |
One class per file: framework/Web/UI/JuiControls
Diffstat (limited to 'framework/Web/UI/JuiControls/IJuiOptions.php')
-rw-r--r-- | framework/Web/UI/JuiControls/IJuiOptions.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/framework/Web/UI/JuiControls/IJuiOptions.php b/framework/Web/UI/JuiControls/IJuiOptions.php new file mode 100644 index 00000000..b021c421 --- /dev/null +++ b/framework/Web/UI/JuiControls/IJuiOptions.php @@ -0,0 +1,27 @@ +<?php +/** + * TJuiControlAdapter class file. + * + * @author Fabio Bas <ctrlaltca@gmail.com> + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2013-2014 PradoSoft + * @license http://www.pradosoft.com/license/ + * @package System.Web.UI.JuiControls + */ + +/** + * IJuiOptions interface + * + * IJuiOptions is the interface that must be implemented by controls using + * {@link TJuiControlOptions}. + * + * @author Fabio Bas <ctrlaltca@gmail.com> + * @package System.Web.UI.JuiControls + * @since 3.3 + */ +interface IJuiOptions +{ + public function getOptions(); + public function getValidOptions(); + public function getValidEvents(); +}
\ No newline at end of file |