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



commit 2f1e42029d23d6f0dbda411040813c44f24639b1
Author: Florian Brosch <flo brosch gmail com>
Date:   Mon Feb 28 01:49:01 2011 +0100

    libvaladoc/api: Add API documentation for TypeParameter

 src/libvaladoc/api/typeparameter.vala |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
---
diff --git a/src/libvaladoc/api/typeparameter.vala b/src/libvaladoc/api/typeparameter.vala
index dbb5b2c..c0f5006 100644
--- a/src/libvaladoc/api/typeparameter.vala
+++ b/src/libvaladoc/api/typeparameter.vala
@@ -23,20 +23,33 @@
 using Gee;
 using Valadoc.Content;
 
+
+/**
+ * Represents a generic type parameter in the source code.
+ */
 public class Valadoc.Api.TypeParameter : Symbol {
 
 	public TypeParameter (Vala.TypeParameter symbol, Node parent) {
 		base (symbol, parent);
 	}
 
+	/**
+	 * { inheritDoc}
+	 */ 
 	protected override Inline build_signature () {
 		return new SignatureBuilder ()
 			.append_symbol (this)
 			.get ();
 	}
 
+	/**
+	 * { inheritDoc}
+	 */ 
 	public override NodeType node_type { get { return NodeType.TYPE_PARAMETER; } }
 
+	/**
+	 * { inheritDoc}
+	 */ 
 	public override void accept (Visitor visitor) {
 		visitor.visit_type_parameter (this);
 	}



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