<?php print "<?php\n"; ?>

/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

/**
 * [[ǽ]]
 *
 * @package     Maple.filter
<?php include($this->getTemplate('maple/generate/skeleton/_doc-comment.txt')); ?>
 * @access      public
 */
class <?php print $skeleton->classname; ?> extends Filter
{
    /**
     * 󥹥ȥ饯
     *
     * @access  public
     */
    function <?php print $skeleton->classname; ?>()
    {
        parent::Filter();
    }

    /**
     * [[ǽ]]
     *
     * @access  public
     */
    function execute()
    {
        $className = get_class($this);

        $log =& LogFactory::getLog();
        $log->trace("${className}¹Ԥޤ", "{$className}#execute");

        //
        // 򵭽
        //

        //
        // ǰöΥե륿ܤ
        //
        $container =& DIContainerFactory::getContainer();
        $filterChain =& $container->getComponent("FilterChain");
        $filterChain->execute();

        //
        // ˸򵭽
        //

        $log->trace("${className}θ¹Ԥޤ", "${className}#execute");
    }
}
<?php print "?>\n"; ?>
