From: Travis Reitter Date: Thu, 24 Jun 2010 15:22:33 +0000 (-0700) Subject: Merge remote branch 'pwith/docs' X-Git-Tag: FOLKS_0_1_9~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5adecc4f4b2c022750f5a7fb001363b95260ae41;p=platform%2Fupstream%2Ffolks.git Merge remote branch 'pwith/docs' (Fixed) Conflicts: folks/individual-aggregator.vala folks/persona-store.vala --- 5adecc4f4b2c022750f5a7fb001363b95260ae41 diff --cc folks/individual-aggregator.vala index 79bd7f1,5388517..1b49e29 --- a/folks/individual-aggregator.vala +++ b/folks/individual-aggregator.vala @@@ -22,12 -22,11 +22,17 @@@ using Folks using Gee; using GLib; +public errordomain Folks.IndividualAggregatorError +{ + STORE_NOT_FOUND, + ADD_FAILED, +} + + /** + * Allows access to the {@link Individual}s which have been created through + * aggregation of all the {@link Persona}s provided by the various + * {@link Backend}s. This is the main interface for client applications. + */ public class Folks.IndividualAggregator : Object { private BackendStore backend_store; diff --cc folks/persona-store.vala index 613745b,8a37efa..cfe1b57 --- a/folks/persona-store.vala +++ b/folks/persona-store.vala @@@ -21,12 -21,9 +21,15 @@@ using GLib; using Folks; +public errordomain Folks.PersonaStoreError +{ + INVALID_ARGUMENT, + CREATE_FAILED, +} + + /** + * A store for {@link Persona}s. + */ public abstract class Folks.PersonaStore : Object { public abstract signal void personas_added (GLib.List personas);