From: Chad Horohoe Date: Tue, 26 Aug 2008 15:23:53 +0000 (+0000) Subject: Move @ingroup around so each of the classes are picked up by Doxygen. X-Git-Tag: 1.31.0-rc.0~45651 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=dd0d713b73e8525deb760a939eb6e28d07845b24;p=lhc%2Fweb%2Fwiklou.git Move @ingroup around so each of the classes are picked up by Doxygen. --- diff --git a/includes/diff/Nodes.php b/includes/diff/Nodes.php index 0f0dbdb376..1b1363d49f 100644 --- a/includes/diff/Nodes.php +++ b/includes/diff/Nodes.php @@ -17,11 +17,11 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * or see http://www.gnu.org/ * - * @ingroup DifferenceEngine */ /** * Any element in the DOM tree of an HTML document. + * @ingroup DifferenceEngine */ class Node { @@ -100,6 +100,7 @@ class Node { /** * Node that can contain other nodes. Represents an HTML tag. + * @ingroup DifferenceEngine */ class TagNode extends Node { @@ -299,6 +300,7 @@ class TagNode extends Node { /** * Represents a piece of text in the HTML file. + * @ingroup DifferenceEngine */ class TextNode extends Node { @@ -348,6 +350,10 @@ class TextNode extends Node { } } +/** + * @todo Document + * @ingroup DifferenceEngine + */ class WhiteSpaceNode extends TextNode { function __construct($parent, $s, Node $like = null) { @@ -362,6 +368,7 @@ class WhiteSpaceNode extends TextNode { /** * Represents the root of a HTML document. + * @ingroup DifferenceEngine */ class BodyNode extends TagNode { @@ -394,6 +401,7 @@ class BodyNode extends TagNode { /** * Represents an image in HTML. Even though images do not contain any text they * are independent visible objects on the page. They are logically a TextNode. + * @ingroup DifferenceEngine */ class ImageNode extends TextNode { @@ -420,6 +428,7 @@ class ImageNode extends TextNode { /** * No-op node + * @ingroup DifferenceEngine */ class DummyNode extends Node {