*/
private $pointerInstance = NULL;
+ /**
+ * An instance of an index
+ */
+ private $indexInstance = NULL;
+
/**
* Thousands separator
*/
/**
* Setter for InputOutputPointer instance
*
- * @param $pointerInstance An instance of an InputOutputPointer
+ * @param $pointerInstance An instance of an InputOutputPointer class
* @return void
*/
protected final function setPointerInstance (InputOutputPointer $pointerInstance) {
/**
* Getter for InputOutputPointer instance
*
- * @return $pointerInstance An instance of an InputOutputPointer
+ * @return $pointerInstance An instance of an InputOutputPointer class
*/
public final function getPointerInstance () {
return $this->pointerInstance;
}
+ /**
+ * Setter for Indexable instance
+ *
+ * @param $indexInstance An instance of an Indexable class
+ * @return void
+ */
+ protected final function setIndexInstance (Indexable $indexInstance) {
+ $this->indexInstance = $indexInstance;
+ }
+
+ /**
+ * Getter for Indexable instance
+ *
+ * @return $indexInstance An instance of an Indexable class
+ */
+ public final function getIndexInstance () {
+ return $this->indexInstance;
+ }
+
/**
* Checks whether an object equals this object. You should overwrite this
* method to implement own equality checks