From: Florian Brosch Date: Sun, 27 Feb 2011 16:13:55 +0000 (+0100) Subject: libvaladoc/api: Add API documentation for Array X-Git-Tag: 0.37.1~3^2~371 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=199812e19036e9282dd146d59764a73edb8e3570;p=thirdparty%2Fvala.git libvaladoc/api: Add API documentation for Array --- diff --git a/src/libvaladoc/api/array.vala b/src/libvaladoc/api/array.vala index 171b9b474..eda6965a9 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)