]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/class_
- Renamed InvalidStateException to UnexpectedStateException
[hub.git] / application / hub / main / states / node / class_
index 7d73f8d3092d4276cb7786faae93f7e664504cc0..82f1903d95cf20a01ea202076e3879146a0225f5 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-class Node???State extends BaseState implements NodeStateable {
+class Node???State extends BaseNodeState implements Stateable {
        /**
         * Protected constructor
         *
@@ -39,14 +39,14 @@ class Node???State extends BaseState implements NodeStateable {
         * Creates an instance of this class
         *
         * @param       $nodeInstance   An instance of a NodeHelper class
-        * @return      $stateInstance  An instance of a NodeStateable class
+        * @return      $stateInstance  An instance of a Stateable class
         */
        public final static function createNode???State (NodeHelper $nodeInstance) {
                // Get new instance
                $stateInstance = new Node???State();
 
                // Debug message
-               $stateInstance->debugOutput("NODE-STATE: Has changed from " . $nodeInstance->getPrintableState() . " to " . $stateInstance->getStateName() . ".");
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
 
                // Set the node instance
                $stateInstance->setNodeInstance($nodeInstance);