summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TActiveTableRow.php
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-20 22:34:11 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-20 22:34:11 +0100
commit7369988330bf8796d9cf2564756baf4eb46871ba (patch)
tree60a0bac5467b76ab6ed45328ed8c4e65703400b7 /framework/Web/UI/ActiveControls/TActiveTableRow.php
parentef4d964de440970b76ab48fcbd6748f43675efa3 (diff)
one class per file: framework/Web/UI/ActiveControls
Diffstat (limited to 'framework/Web/UI/ActiveControls/TActiveTableRow.php')
-rw-r--r--framework/Web/UI/ActiveControls/TActiveTableRow.php45
1 files changed, 0 insertions, 45 deletions
diff --git a/framework/Web/UI/ActiveControls/TActiveTableRow.php b/framework/Web/UI/ActiveControls/TActiveTableRow.php
index 6beeb27e..a97ffecf 100644
--- a/framework/Web/UI/ActiveControls/TActiveTableRow.php
+++ b/framework/Web/UI/ActiveControls/TActiveTableRow.php
@@ -222,49 +222,4 @@ class TActiveTableRow extends TTableRow implements ICallbackEventHandler, IActiv
return $this->_table;
}
-}
-
-/**
- * TActiveTableRowEventParameter class.
- *
- * The TActiveTableRowEventParameter provides the parameter passed during the callback
- * requestion in the {@link getCallbackParameter CallbackParameter} property. The
- * callback response content (e.g. new HTML content) must be rendered
- * using an THtmlWriter obtained from the {@link getNewWriter NewWriter}
- * property, which returns a <b>NEW</b> instance of TCallbackResponseWriter.
- *
- * The {@link getSelectedRowIndex SelectedRowIndex} is a zero-based index of the
- * TActiveTableRow , -1 if the row is not part of the row collection (this shouldn't
- * happen though since an exception is thrown before).
- *
- * @author LANDWEHR Computer und Software GmbH <programmierung@landwehr-software.de>
- * @package System.Web.UI.ActiveControls
- * @since 3.1.9
- */
-class TActiveTableRowEventParameter extends TCallbackEventParameter
-{
- /**
- * @var integer the zero-based index of the row.
- */
- private $_selectedRowIndex = -1;
-
- /**
- * Creates a new TActiveTableRowEventParameter.
- */
- public function __construct($response, $parameter, $index=-1)
- {
- parent::__construct($response, $parameter);
- $this->_selectedRowIndex = $index;
- }
-
- /**
- * Returns the zero-based index of the {@link TActiveTableRow} within the
- * {@link TTableRowCollection} of the parent {@link TTable} control.
- * @return integer the zero-based index of the row.
- */
- public function getSelectedRowIndex()
- {
- return $this->_selectedRowIndex;
- }
-
} \ No newline at end of file