From ef8e4bcf37d1fa4fd783924943e508696d70cf20 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Tue, 24 Mar 2015 21:33:04 +0100 Subject: [PATCH] Moved from 'hub' project, too. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../interfaces/visitor/decorator/.htaccess | 1 + .../decorator/class_DecoratorVisitor.php | 35 +++++++++++++++++++ .../listener/class_ListenerVisitor.php | 2 +- .../visitor/pool/class_PoolVisitor.php | 2 +- 4 files changed, 38 insertions(+), 2 deletions(-) create mode 100644 inc/classes/interfaces/visitor/decorator/.htaccess create mode 100644 inc/classes/interfaces/visitor/decorator/class_DecoratorVisitor.php diff --git a/inc/classes/interfaces/visitor/decorator/.htaccess b/inc/classes/interfaces/visitor/decorator/.htaccess new file mode 100644 index 00000000..3a428827 --- /dev/null +++ b/inc/classes/interfaces/visitor/decorator/.htaccess @@ -0,0 +1 @@ +Deny from all diff --git a/inc/classes/interfaces/visitor/decorator/class_DecoratorVisitor.php b/inc/classes/interfaces/visitor/decorator/class_DecoratorVisitor.php new file mode 100644 index 00000000..0e08e479 --- /dev/null +++ b/inc/classes/interfaces/visitor/decorator/class_DecoratorVisitor.php @@ -0,0 +1,35 @@ + + * @version 0.0.0 + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team + * @license GNU GPL 3.0 or any newer version + * @link http://www.shipsimu.org + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +interface DecoratorVisitor extends Visitor { + /** + * Visits the given decorator instance + * + * @param $decoratorInstance A decorator instance + * @return void + */ + function visitDecorator (BaseDecorator $decoratorInstance); +} + +// [EOF] +?> diff --git a/inc/classes/interfaces/visitor/listener/class_ListenerVisitor.php b/inc/classes/interfaces/visitor/listener/class_ListenerVisitor.php index cc42bbd8..57403719 100644 --- a/inc/classes/interfaces/visitor/listener/class_ListenerVisitor.php +++ b/inc/classes/interfaces/visitor/listener/class_ListenerVisitor.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * diff --git a/inc/classes/interfaces/visitor/pool/class_PoolVisitor.php b/inc/classes/interfaces/visitor/pool/class_PoolVisitor.php index fd308e2c..9deaec35 100644 --- a/inc/classes/interfaces/visitor/pool/class_PoolVisitor.php +++ b/inc/classes/interfaces/visitor/pool/class_PoolVisitor.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * -- 2.30.2