<?php /** * Page DocBlock definition * @package org.zadara.marius.pax */ /** * Classes loader. * This file will load all the classes needed. * * @author Marius Zadara <hide@address.com> * @category Loaders * @copyright (C) 2008-2009 Marius Zadara * @license Free for non-comercial use * @package org.zadara.marius.pax * @since 5.0 */ /** * General PAX class. * @see PAXObject.class.php */ require_once 'PAXObject.class.php'; /** * Config class definition, acting as a hash-map * @see Config.class.php */ require_once 'Config.class.php'; /** * Various message used for exceptions * @see Messages.class.php */ require_once 'Messages.class.php'; /** * General resource. * @see Resource.class.php */ require_once 'Resource.class.php'; /** * File resource * @see File.class.php */ require_once 'File.class.php'; /** * Directory resource. * @see Dir.class.php */ require_once 'Dir.class.php'; /** * Environment definition. * @see Environment.class.php */ require_once 'Environment.class.php'; /** * PAX model. * @see Model.class.php */ require_once 'Model.class.php'; /** * Tags. * @see Tags.class.php */ require_once 'Tags.class.php'; /** * Attributes class. * @see Attributes.class.php */ require_once 'Attributes.class.php'; /** * Pattern class. * @see Pattern.class.php */ require_once 'Pattern.class.php'; /** * Instruction Extractor. * @see InstructionExtractor.class.php */ require_once 'InstructionExtractor.class.php'; /** * Instruction Evaluator. * @see InstructionEvaluator.class.php */ require_once 'InstructionEvaluator.class.php'; /** * Instruction Replacer. * @see InstructionReplacer.class.php */ require_once 'InstructionReplacer.class.php'; /** * Main PAX class definition. * @see PAX.class.php */ require_once 'PAX.class.php'; /** * Node definition. * @see Node.class.php */ require_once 'Node.class.php'; ?>