remove comments of overridden methods
authorJuerg Billeter <j@bitron.ch>
Wed, 25 Jul 2007 21:16:30 +0000 (21:16 +0000)
committerJürg Billeter <juergbi@src.gnome.org>
Wed, 25 Jul 2007 21:16:30 +0000 (21:16 +0000)
2007-07-25  Juerg Billeter  <j@bitron.ch>

* vala/valaarray.vala: remove comments of overridden methods

svn path=/trunk/; revision=388

ChangeLog
vala/valaarray.vala

index 0ab318f..3c03452 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2007-07-25  Jürg Billeter  <j@bitron.ch>
 
+       * vala/valaarray.vala: remove comments of overridden methods
+
+2007-07-25  Jürg Billeter  <j@bitron.ch>
+
        * vala/valainvokable.vala, vala/valamemorymanager.vala,
          vala/valasymbolresolver.vala, gobject/valacodegenerator.vala,
          gobject/valacodegeneratorassignment.vala,
index 8df61dd..116074a 100644 (file)
@@ -89,12 +89,7 @@ public class Vala.Array : DataType {
                }
                name = "%s]".printf (name);
        }
-       
-       /**
-        * Returns the name of this data type as it is used in C code.
-        *
-        * @return the name to be used in C code
-        */
+
        public override string get_cname (bool const_type = false) {
                if (cname == null) {
                        if (element_type != null) {
@@ -110,61 +105,23 @@ public class Vala.Array : DataType {
                
                return cname;
        }
-       
-       /**
-        * Checks whether this data type has value or reference type semantics.
-        *
-        * @return true if this data type has reference type semantics
-        */
+
        public override bool is_reference_type () {
                return true;
        }
-       
-       /**
-        * Returns the C name of this data type in upper case. Words are
-        * separated by underscores. The upper case C name of the namespace is
-        * prefix of the result.
-        *
-        * @param infix a string to be placed between namespace and data type
-        *              name or null
-        * @return      the upper case name to be used in C code
-        */
+
        public override string get_upper_case_cname (string infix) {
                return null;
        }
-       
-       /**
-        * Returns the C name of this data type in lower case. Words are
-        * separated by underscores. The lower case C name of the namespace is
-        * prefix of the result.
-        *
-        * @param infix a string to be placed between namespace and data type
-        *              name or null
-        * @return      the lower case name to be used in C code
-        */
+
        public override string get_lower_case_cname (string infix) {
                return null;
        }
-       
-       /**
-        * Returns the C function name that frees instances of this data type.
-        * This is only valid for data types with reference type semantics that
-        * do not support reference counting. The specified C function must
-        * accept one argument pointing to the instance to be freed.
-        *
-        * @return the name of the C function or null if this data type is not a
-        *         reference type or if it supports reference counting
-        */
+
        public override string get_free_function () {
                return "g_free";
        }
-       
-       /**
-        * Returns a list of C header filenames users of this data type must
-        * include.
-        *
-        * @return list of C header filenames for this data type
-        */
+
        public override List<weak string> get_cheader_filenames () {
                if (element_type != null) {
                        return element_type.get_cheader_filenames ();
@@ -172,7 +129,7 @@ public class Vala.Array : DataType {
                        return null;
                }
        }
-       
+
        public override string get_marshaller_type_name () {
                return "POINTER";
        }