1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="tidyNode" namespace="" name="tidyNode">
<member name="value" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="The HTML representation of the node, including the surrounding tags."/>
<var type="string"/>
</docblock>
</member>
<member name="name" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="The name of the HTML node"/>
<var type="string"/>
</docblock>
</member>
<member name="type" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="The type of the node (one of the nodetype constants, e.g. TIDY_NODETYPE_PHP)"/>
<var type="int"/>
</docblock>
</member>
<member name="line" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="The line number at which the tags is located in the file"/>
<var type="int"/>
</docblock>
</member>
<member name="column" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="The column number at which the tags is located in the file"/>
<var type="int"/>
</docblock>
</member>
<member name="proprietary" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="Indicates if the node is a proprietary tag"/>
<var type="bool"/>
</docblock>
</member>
<member name="id" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="The ID of the node (one of the tag constants, e.g. TIDY_TAG_FRAME)"/>
<var type="int"/>
</docblock>
</member>
<member name="attribute" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="An array of string, representing the attributes names (as keys) of the current node."/>
<var type="array"/>
</docblock>
</member>
<member name="child" static="false" visibility="public">
<default>null</default>
<docblock>
<description compact="An array of tidyNode, representing the children of the current node."/>
<var type="array"/>
</docblock>
</member>
<constructor name="__construct" abstract="false" static="false" final="false">
<docblock>
<description compact="Private constructor to disallow direct instantiation"/>
<return type="void"/>
</docblock>
</constructor>
<method name="getParent" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Returns the parent node of the current node"/>
<return type="tidyNode"/>
</docblock>
</method>
<method name="hasChildren" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if a node has children"/>
<return type="bool"/>
</docblock>
</method>
<method name="hasSiblings" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if a node has siblings"/>
<return type="bool"/>
</docblock>
</method>
<method name="isAsp" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if this node is ASP"/>
<return type="bool"/>
</docblock>
</method>
<method name="isComment" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if a node represents a comment"/>
<return type="bool"/>
</docblock>
</method>
<method name="isHtml" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if a node is part of a HTML document"/>
<return type="bool"/>
</docblock>
</method>
<method name="isJste" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if this node is JSTE"/>
<return type="bool"/>
</docblock>
</method>
<method name="isPhp" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if a node is PHP"/>
<return type="bool"/>
</docblock>
</method>
<method name="isText" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Checks if a node represents text (no markup)"/>
<return type="bool"/>
</docblock>
</method>
</class>
|