~ken-vandine/ubuntu/precise/folks/precise

« back to all changes in this revision

Viewing changes to tests/lib/eds/backend.vala

  • Committer: Package Import Robot
  • Author(s): Rodrigo Moya
  • Date: 2011-09-08 12:26:07 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: package-import@ubuntu.com-20110908122607-g8fdqcpxlbxcn5q0
Tags: 0.6.2-0ubuntu1
* New upstream release
* debian/control:
  - Bump vala build dependency
* debian/libfolks25.symbols:
* debian/libfolks-eds25.symbols:
  - Updated symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
public class EdsTest.Backend
34
34
{
35
 
  public const string address_book_uri = "local://test";
36
35
  private string _addressbook_name;
37
36
  private E.BookClient _addressbook;
38
37
  private GLib.List<string> _e_contacts;
40
39
  E.SourceGroup _source_group;
41
40
  E.Source _source;
42
41
 
 
42
  public string address_book_uri
 
43
    {
 
44
      get; set; default = "local://test";
 
45
    }
 
46
 
43
47
  public Backend ()
44
48
    {
45
49
      this._contacts = new GLib.List<Gee.HashMap<string, Value?>> ();
46
50
      this._e_contacts = new GLib.List<string> ();
47
 
   }
 
51
    }
48
52
 
49
53
  public void add_contact (owned Gee.HashMap<string, Value?> c)
50
54
    {