Add missing @inheritDoc doclets
authorPhilip Withnall <philip.withnall@collabora.co.uk>
Mon, 13 Sep 2010 12:28:56 +0000 (13:28 +0100)
committerPhilip Withnall <philip.withnall@collabora.co.uk>
Mon, 13 Sep 2010 12:28:56 +0000 (13:28 +0100)
backends/key-file/kf-backend.vala
backends/key-file/kf-persona-store.vala
backends/key-file/kf-persona.vala
backends/telepathy/lib/tpf-persona-store.vala
backends/telepathy/tp-backend.vala

index ec935e5..1e0e1a0 100644 (file)
@@ -52,6 +52,9 @@ public class Folks.Backends.Kf.Backend : Folks.Backend
       Object (name: "key-file");
     }
 
+  /**
+   * {@inheritDoc}
+   */
   public override async void prepare ()
     {
       File file;
index 9f2490a..1b84e99 100644 (file)
@@ -76,6 +76,9 @@ public class Folks.Backends.Kf.PersonaStore : Folks.PersonaStore
       this._personas = new HashTable<string, Persona> (str_hash, str_equal);
     }
 
+  /**
+   * {@inheritDoc}
+   */
   public override async void prepare ()
     {
       string filename = this.file.get_path ();
index 6e64bfc..5986cb0 100644 (file)
@@ -180,6 +180,9 @@ public class Folks.Backends.Kf.Persona : Folks.Persona,
         }
     }
 
+  /**
+   * {@inheritDoc}
+   */
   public override void linkable_property_to_links (string prop_name,
       Folks.Persona.LinkablePropertyCallback callback)
     {
index 1d30cc2..41ac34d 100644 (file)
@@ -138,6 +138,9 @@ public class Tpf.PersonaStore : Folks.PersonaStore
       this.ll = new TpLowlevel ();
     }
 
+  /**
+   * {@inheritDoc}
+   */
   public override async void prepare ()
     {
       this.account_manager = AccountManager.dup ();
index c5dc516..d1536f8 100644 (file)
@@ -52,6 +52,9 @@ public class Folks.Backends.Tp.Backend : Folks.Backend
       Object (name: "telepathy");
     }
 
+  /**
+   * {@inheritDoc}
+   */
   public override async void prepare () throws GLib.Error
     {
       this.account_manager = AccountManager.dup ();