[valadoc] libvaladoc/api: Add API documentation for Namespace



commit e4ce9569dc30cb54eca06686f0736d28b1495d04
Author: Florian Brosch <flo brosch gmail com>
Date:   Mon Feb 28 01:54:05 2011 +0100

    libvaladoc/api: Add API documentation for Namespace

 src/libvaladoc/api/namespace.vala |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)
---
diff --git a/src/libvaladoc/api/namespace.vala b/src/libvaladoc/api/namespace.vala
index 00464f8..0c2389e 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);
 	}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]