]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libvaladoc/api: Add API documentation for TypeParameter
authorFlorian Brosch <flo.brosch@gmail.com>
Mon, 28 Feb 2011 00:49:01 +0000 (01:49 +0100)
committerFlorian Brosch <flo.brosch@gmail.com>
Mon, 28 Feb 2011 00:49:01 +0000 (01:49 +0100)
src/libvaladoc/api/typeparameter.vala

index dbb5b2c086d8df99b69bded8c90b3464fe776896..c0f5006100d1f8f50dcbb063b45fb06ef0d5d557 100644 (file)
 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);
        }