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



commit 199812e19036e9282dd146d59764a73edb8e3570
Author: Florian Brosch <flo brosch gmail com>
Date:   Sun Feb 27 17:13:55 2011 +0100

    libvaladoc/api: Add API documentation for Array

 src/libvaladoc/api/array.vala |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
---
diff --git a/src/libvaladoc/api/array.vala b/src/libvaladoc/api/array.vala
index 171b9b4..eda6965 100644
--- a/src/libvaladoc/api/array.vala
+++ b/src/libvaladoc/api/array.vala
@@ -23,9 +23,16 @@
 using Gee;
 using Valadoc.Content;
 
+
+/**
+ * Represents an array declaration.
+ */
 public class Valadoc.Api.Array : Item {
 	private Vala.ArrayType vtype;
 
+	/**
+	 * The element type.
+	 */
 	public Item data_type {
 		private set;
 		get;
@@ -43,6 +50,9 @@ public class Valadoc.Api.Array : Item {
 		}
 	}
 
+	/**
+	 * { inheritDoc}
+	 */
 	internal override void resolve_type_references (Tree root) {
 		if (this.data_type == null) {
 			/*TODO:possible?*/;
@@ -55,6 +65,9 @@ public class Valadoc.Api.Array : Item {
 		}
 	}
 
+	/**
+	 * { inheritDoc}
+	 */
 	protected override Inline build_signature () {
 		return new SignatureBuilder ()
 			.append_content (data_type.signature)



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