// Must be this namespace, else the launcher cannot find the class.
namespace Org\Mxchange\CoreFramework\Helper\Application;
-// Import hub-specific sutff
+// Import application-specific sutff
use Org\Shipsimu\Hub\Tools\HubTools;
// Import framework stuff
// Own namespace
namespace Org\Shipsimu\Hub\AptProxy;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseNodeAptProxy extends BaseHubSystem {
+abstract class BaseNodeAptProxy extends BaseHubSystem {
/**
* Whether this apt-proxy is active
*/
public final function isActive () {
return $this->isActive;
}
+
}
// Own namespace
namespace Org\Shipsimu\Hub\Block;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseBlock extends BaseHubSystem {
+abstract class BaseBlock extends BaseHubSystem {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Chat;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseNodeChat extends BaseHubSystem {
+abstract class BaseNodeChat extends BaseHubSystem {
/**
* Whether this Chatter is active
*/
public final function isActive () {
return $this->isActive;
}
+
}
* 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 BaseHubSystem extends BaseFrameworkSystem implements HubInterface {
+abstract class BaseHubSystem extends BaseFrameworkSystem implements HubInterface {
// Exception codes
const EXCEPTION_CHUNK_ALREADY_ASSEMBLED = 0x900;
const EXCEPTION_ANNOUNCEMENT_NOT_ACCEPTED = 0x901;
// Own namespace
namespace Org\Shipsimu\Hub\Communicator;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Import framework stuff
* 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 BaseCommunicator extends BaseHubSystem {
+abstract class BaseCommunicator extends BaseHubSystem {
/**
* Protected constructor
*
// This communicator is now fully initialized so change the state
$stateInstance->communicatorHasInitialized();
}
+
}
// Own namespace
namespace Org\Shipsimu\Hub\Network\Compressor\Package;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Import framework-specific stuff
// Call the inner compressor class
return $this->getCompressorInstance()->getCompressorExtension();
}
-}
-// [EOF]
-?>
+}
* 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 BaseHubContainer extends BaseContainer implements HubInterface {
+abstract class BaseHubContainer extends BaseContainer implements HubInterface {
/**
* Listener instance
*/
// Own namespace
namespace Org\Shipsimu\Hub\Crawler;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Import framework stuff
* 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 BaseNodeCrawler extends BaseHubSystem {
+abstract class BaseNodeCrawler extends BaseHubSystem {
/**
* Whether this Crawler is active
*/
public final function isActive () {
return $this->isActive;
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Cruncher;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Import framework stuff
$this->partialStub('Unfinished!');
return;
}
+
}
* 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 BaseHubDatabaseWrapper extends BaseDatabaseWrapper implements HubInterface {
+abstract class BaseHubDatabaseWrapper extends BaseDatabaseWrapper implements HubInterface {
/**
* Listener instance
*/
// Own namespace
namespace Org\Shipsimu\Hub\Decoder;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseDecoder extends BaseHubSystem {
+abstract class BaseDecoder extends BaseHubSystem {
/**
* Protected constructor
*
// Own namespace
namespace Org\Shipsimu\Hub\Dht;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Factory\State\Dht\DhtStateFactory;
use Org\Shipsimu\Hub\Dht\Distributable;
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
* 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 BaseNodeDiscovery extends BaseDiscovery implements Discoverable {
+abstract class BaseNodeDiscovery extends BaseDiscovery implements Discoverable {
/**
* Protected constructor
*
* 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 BaseRecipientDiscovery extends BaseNodeDiscovery implements DiscoverableRecipient {
+abstract class BaseRecipientDiscovery extends BaseNodeDiscovery implements DiscoverableRecipient {
/**
* Protected constructor
*
// Own namespace
namespace Org\Shipsimu\Hub\Discovery\Network\Recipient;
-// Import hub-specific sutff
+// Import application-specific sutff
use Org\Shipsimu\Hub\Discovery\Recipient\BaseRecipientDiscovery;
use Org\Shipsimu\Hub\Discovery\Recipient\Node\DiscoverableNodeRecipient;
use Org\Shipsimu\Hub\Factory\Handler\Protocol\ProtocolHandlerFactory;
// Own namespace
namespace Org\Shipsimu\Hub\Network\Discovery\Socket;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Container\Socket\StorableSocket;
use Org\Shipsimu\Hub\Discovery\Recipient\BaseRecipientDiscovery;
use Org\Shipsimu\Hub\Discovery\Protocol\ProtocolDiscovery;
* 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 BaseAptProxyFilter extends BaseHubFilter {
+abstract class BaseAptProxyFilter extends BaseHubFilter {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseChatFilter extends BaseHubFilter {
+abstract class BaseChatFilter extends BaseHubFilter {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseCrawlerFilter extends BaseHubFilter {
+abstract class BaseCrawlerFilter extends BaseHubFilter {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseCruncherFilter extends BaseHubFilter {
+abstract class BaseCruncherFilter extends BaseHubFilter {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseHubFilter extends BaseFilter {
+abstract class BaseHubFilter extends BaseFilter {
/**
* Array with all data XML nodes (which hold the actual data) and their values
*/
// Push the processed message back on stack
$packageInstance->getStackInstance()->pushNamed(NetworkPackage::STACKER_NAME_PROCESSED_MESSAGE, $messageArray);
}
-}
-// [EOF]
-?>
+}
* 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 BaseMinerFilter extends BaseHubFilter {
+abstract class BaseMinerFilter extends BaseHubFilter {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseNodeFilter extends BaseHubFilter {
+abstract class BaseNodeFilter extends BaseHubFilter {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseHubHandler extends BaseHandler implements Handleable, HubInterface {
+abstract class BaseHubHandler extends BaseHandler implements Handleable, HubInterface {
/**
* Listener instance
*/
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Handler\Message;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Factory\Dht\DhtObjectFactory;
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
use Org\Shipsimu\Hub\Network\Receive\Receivable;
* 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 BaseRawDataHandler extends BaseHubHandler implements HandleableRawData {
+abstract class BaseRawDataHandler extends BaseHubHandler implements HandleableRawData {
/**
* Error code from socket
*/
// Own namespace
namespace Org\Shipsimu\Hub\Helper;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
die(__METHOD__ . ':' . print_r($this, TRUE));
// Return it
}
+
}
* 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 BaseConnectionHelper extends BaseHubSystemHelper implements Visitable, Registerable {
+abstract class BaseConnectionHelper extends BaseHubSystemHelper implements Visitable, Registerable {
// Exception codes
const EXCEPTION_UNSUPPORTED_ERROR_HANDLER = 0x9100;
* 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 BaseIpV4ConnectionHelper extends BaseConnectionHelper {
+abstract class BaseIpV4ConnectionHelper extends BaseConnectionHelper {
/**
* Protected constructor
*
* 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 BaseMessageHelper extends BaseHubSystem {
+abstract class BaseMessageHelper extends BaseHubSystem {
/**
* Protected constructor
*
* 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 BaseHubAnswerHelper extends BaseNodeHelper {
+abstract class BaseHubAnswerHelper extends BaseNodeHelper {
/**
* Message data array
*/
public final function getMessageData () {
return $this->messageData;
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Helper\Node;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
use Org\Shipsimu\Hub\Helper\BaseHubSystemHelper;
* @return void
*/
abstract protected function initializeUnitHelper ();
-}
-// [EOF]
-?>
+}
* 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 BaseInfo extends BaseHubSystem {
+abstract class BaseInfo extends BaseHubSystem {
/**
* Protected constructor
*
* 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 BaseListener extends BaseHubSystem implements Visitable {
+abstract class BaseListener extends BaseHubSystem implements Visitable {
// Exception code constants
const EXCEPTION_SOCKET_ALREADY_REGISTERED = 0xa01;
const EXCEPTION_SOCKET_CREATION_FAILED = 0xa02;
* 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 BaseListenerDecorator extends BaseDecorator implements Visitable {
+abstract class BaseListenerDecorator extends BaseDecorator implements Visitable {
/**
* Listener type
*/
// Own namespace
namespace Org\Shipsimu\Hub\Miner;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Import framework stuff
MinerStateFactory::createMinerStateInstanceByName('booting');
} // END - if
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Node;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Database\Frontend\Node\Dht\NodeDistributedHashTableDatabaseWrapper;
use Org\Shipsimu\Hub\Database\Frontend\Node\Information\NodeInformationDatabaseWrapper;
use Org\Shipsimu\Hub\Factory\Registry\Object\ObjectTypeRegistryFactory;
* 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 BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
+abstract class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
/**
* Node types
*/
// Own namespace
namespace Org\Shipsimu\Hub\Network\Package\Assembler;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Container\Socket\StorableSocket;
use Org\Shipsimu\Hub\Factory\Handler\Chunk\ChunkHandlerFactory;
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Own namespace
namespace Org\Shipsimu\Hub\Pool;
-// Import hub-specific stuff
+// Import application-specificl stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
use Org\Shipsimu\Hub\Pool\Poolable;
protected function isIncomingQueueLimitReached($configEntry) {
return ($this->getConfigInstance()->getConfigEntry($configEntry) <= $this->getIncomingQueueInstance()->getStackCount(self::STACKER_NAME_IN_QUEUE));
}
-}
-// [EOF]
-?>
+}
// Init key producer
}
-}
-// [EOF]
-?>
+}
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Network\Recipient;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseRecipient extends BaseHubSystem {
+abstract class BaseRecipient extends BaseHubSystem {
/**
* Protected constructor
*
// Own namespace
namespace Org\Shipsimu\Hub\Network\Recipient\Direct;
-// Import hub-specific sutff
+// Import application-specific sutff
use Org\Shipsimu\Hub\Network\Package\NetworkPackage;
use Org\Shipsimu\Hub\Network\Recipient\BaseRecipient;
use Org\Shipsimu\Hub\Network\Recipient\Recipient;
// Own namespace
namespace Org\Shipsimu\Hub\Network\Recipient\Loopback;
-// Import hub-specific sutff
+// Import application-specific sutff
use Org\Shipsimu\Hub\Network\Package\NetworkPackage;
use Org\Shipsimu\Hub\Network\Recipient\BaseRecipient;
use Org\Shipsimu\Hub\Network\Recipient\Recipient;
// Own namespace
namespace Org\Shipsimu\Hub\Network\Recipient\Upper;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
use Org\Shipsimu\Hub\Network\Package\NetworkPackage;
use Org\Shipsimu\Hub\Network\Recipient\BaseRecipient;
// Own namespace
namespace Org\Shipsimu\Hub\Resolver\Protocol;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseStateResolver extends BaseResolver {
+abstract class BaseStateResolver extends BaseResolver {
/**
* Prefix for local, remote or other resolver
*/
// Own namespace
namespace Org\Shipsimu\Hub\Scanner;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseScanner extends BaseHubSystem {
+abstract class BaseScanner extends BaseHubSystem {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Source;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
/**
* 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 BaseSource extends BaseHubSystem {
+abstract class BaseSource extends BaseHubSystem {
/**
* Protected constructor
*
// Call parent constructor
parent::__construct($className);
}
-}
-// [EOF]
-?>
+}
* 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 BaseUrlSource extends BaseSource {
+abstract class BaseUrlSource extends BaseSource {
// Stack name for all URLs
const STACKER_NAME_URLS = 'urls';
// Debug message
/* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('CRAWLER-SOURCE : EXIT!');
}
-}
-// [EOF]
-?>
+}
* 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 BaseCommunicatorState extends BaseState {
+abstract class BaseCommunicatorState extends BaseState {
/**
* Protected constructor
*
throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
} // END - if
}
-}
-// [EOF]
-?>
+}
* 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 BaseCrawlerState extends BaseState {
+abstract class BaseCrawlerState extends BaseState {
/**
* Protected constructor
*
throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
} // END - if
}
-}
-// [EOF]
-?>
+}
* 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 BaseCruncherState extends BaseState {
+abstract class BaseCruncherState extends BaseState {
/**
* Protected constructor
*
// Just compare it...
return ($this instanceof CruncherVirginState);
}
-}
-// [EOF]
-?>
+}
* 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 BaseDhtState extends BaseState {
+abstract class BaseDhtState extends BaseState {
/**
* Protected constructor
*
// Return status
return $isBooting;
}
-}
-// [EOF]
-?>
+}
* 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 BaseMinerState extends BaseState {
+abstract class BaseMinerState extends BaseState {
/**
* Protected constructor
*
// Just compare it...
return ($this instanceof MinerVirginState);
}
-}
-// [EOF]
-?>
+}
* 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 BaseNodeState extends BaseState {
+abstract class BaseNodeState extends BaseState {
/**
* Protected constructor
*
throw new UnexpectedStateException($this, self::EXCEPTION_INVALID_STATE);
} // END - if
}
-}
-// [EOF]
-?>
+}
* 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 BasePeerState extends BaseState {
+abstract class BasePeerState extends BaseState {
/**
* Protected constructor
*
// Just compare it...
return ($this instanceof ConnectedPeerState);
}
-}
-// [EOF]
-?>
+}
// Own namespace
namespace Org\Shipsimu\Hub\Helper\Connection;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
use Org\Shipsimu\Hub\Helper\Connection\ConnectionHelper;
// Own namespace
namespace Org\Shipsimu\Hub\Tag;
-// Import hub-specific stuff
+// Import application-specific stuff
use Org\Shipsimu\Hub\Generic\BaseHubSystem;
// Import framework stuff
* 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 BaseTag extends BaseHubSystem implements Registerable {
+abstract class BaseTag extends BaseHubSystem implements Registerable {
/**
* An array with all tags
*/
protected final function getTags () {
return $this->tags;
}
-}
-// [EOF]
-?>
+}
* 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 BaseUrlSourceTask extends BaseTask {
+abstract class BaseUrlSourceTask extends BaseTask {
/**
* Protected constructor
*
// And set it here
$this->setUrlSourceInstance($sourceInstance);
}
-}
-// [EOF]
-?>
+}
* 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 BaseXmlAnswerTemplateEngine extends BaseXmlTemplateEngine implements CompileableTemplate, Registerable {
+abstract class BaseXmlAnswerTemplateEngine extends BaseXmlTemplateEngine implements CompileableTemplate, Registerable {
/**
* Generic 'answer-status' field
*/
// Pop the last entry
$this->getStackInstance()->popNamed($this->getStackerName());
}
-}
-// [EOF]
-?>
+}
* 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 BaseXmlTemplateEngine extends BaseTemplateEngine {
+abstract class BaseXmlTemplateEngine extends BaseTemplateEngine {
/**
* Main nodes in the XML tree
*/
//* DEBUG: */ echo "call: ".$methodName."<br />\n";
call_user_func_array(array($this, $methodName), array());
}
+
}
// CFG: ENABLE-FEATURE-FUSE
// Enable this, if you have fuse.dll/so installed and want to access your node: $cfg->setConfigEntry('enable_feature_fuse', 'Y');
-
-// [EOF]
-?>
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class DhtBootstrapNotAcceptedException extends FrameworkException {
+
/**
* The super constructor for all exceptions
*
// Call parent exception constructor
parent::__construct($message, $code);
}
-}
-// [EOF]
-?>
+}
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class NoRequestNodeListAttemptedException extends FrameworkException {
+
/**
* The super constructor for all exceptions
*
// Call parent exception constructor
parent::__construct($message, $code);
}
-}
-// [EOF]
-?>
+}