| 1 |
<?php |
| 2 |
/** |
| 3 |
* |
| 4 |
*/ |
| 5 |
|
| 6 |
/** |
| 7 |
* |
| 8 |
*/ |
| 9 |
interface CJT_Models_Package_Xml_Definition_Interface_Element { |
| 10 |
|
| 11 |
/** |
| 12 |
* put your comment there... |
| 13 |
* |
| 14 |
* @param SimpleXMLElement $node |
| 15 |
* @return CJT_Models_Package_Xml_Definition_Interface_Element |
| 16 |
*/ |
| 17 |
public function __construct(SimpleXMLElement $node, $parent, $factory); |
| 18 |
|
| 19 |
/** |
| 20 |
* put your comment there... |
| 21 |
* |
| 22 |
*/ |
| 23 |
public function processInners(); |
| 24 |
|
| 25 |
/** |
| 26 |
* put your comment there... |
| 27 |
* |
| 28 |
*/ |
| 29 |
public function register(); |
| 30 |
|
| 31 |
/** |
| 32 |
* put your comment there... |
| 33 |
* |
| 34 |
*/ |
| 35 |
public function transit(); |
| 36 |
|
| 37 |
/** |
| 38 |
* Return virual path to current doc object |
| 39 |
*/ |
| 40 |
public function virtualPath(); |
| 41 |
|
| 42 |
} // End class. |
| 43 |
|