PHP Classes

File: core/interfaces/INode.intf.php

Recommend this page to a friend!
  Classes of Marius Zadara   PAX   core/interfaces/INode.intf.php   Download  
File: core/interfaces/INode.intf.php
Role: Class source
Content type: text/plain
Description: Node interface
Class: PAX
Interpret XML command scripts with PHP classes
Author: By
Last change: version update
Date: 15 years ago
Size: 928 bytes
 

Contents

Class file image Download
<?php

/**
 * Page DocBlock definition
 * @package org.zadara.marius.pax
 */

/**
 * Parser model interface.
 *
 * @author Marius Zadara <marius@zadara.org>
 * @category Interfaces
 * @copyright (C) 2008-2009 Marius Zadara
 * @license Free for non-comercial use
 * @package org.zadara.marius.pax
 * @see IPAXObject
 * @since 5.0
 */
interface INode extends IPAXObject
{
   
/**
     * Method to set the user object.
     *
     * @access public
     * @final
     * @param object <b>$userObject</b> The user custom object
     * @return void
     */
   
public function setUserObject(&$userObject);

   
/**
     * Method to set the current attributes
     *
     * @access public
     * @final
     * @return void
     */
   
public function setAttributes(&$attributes);

   
   
/**
     * Method to be called when the tag is complete (short form).
     *
     * @access public
     * @return void
     */
   
public function onComplete();
}

?>