From: Florian Brosch Date: Mon, 28 Feb 2011 00:54:05 +0000 (+0100) Subject: libvaladoc/api: Add API documentation for Namespace X-Git-Tag: 0.37.1~3^2~341 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4ce9569dc30cb54eca06686f0736d28b1495d04;p=thirdparty%2Fvala.git libvaladoc/api: Add API documentation for Namespace --- diff --git a/src/libvaladoc/api/namespace.vala b/src/libvaladoc/api/namespace.vala index 00464f8d1..0c2389ebb 100644 --- a/src/libvaladoc/api/namespace.vala +++ b/src/libvaladoc/api/namespace.vala @@ -23,6 +23,10 @@ using Gee; using Valadoc.Content; + +/** + * Represents a namespace declaration. + */ public class Valadoc.Api.Namespace : Symbol { private Vala.Comment source_comment; @@ -39,6 +43,9 @@ public class Valadoc.Api.Namespace : Symbol { } } + /** + * {@inheritDoc} + */ internal override void process_comments (Settings settings, DocumentationParser parser) { if (source_comment != null) { documentation = parser.parse (this, source_comment); @@ -47,6 +54,9 @@ public class Valadoc.Api.Namespace : Symbol { base.process_comments (settings, parser); } + /** + * {@inheritDoc} + */ protected override Inline build_signature () { return new SignatureBuilder () .append_keyword (get_accessibility_modifier ()) @@ -55,8 +65,14 @@ public class Valadoc.Api.Namespace : Symbol { .get (); } + /** + * {@inheritDoc} + */ public override NodeType node_type { get { return NodeType.NAMESPACE; } } + /** + * {@inheritDoc} + */ public override void accept (Visitor visitor) { visitor.visit_namespace (this); }