~ubuntu-branches/ubuntu/jaunty/beagle/jaunty-security

« back to all changes in this revision

Viewing changes to beagled/xemail-net/src/MessageSet.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-04 00:31:32 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20080504003132-2tkm5o8moo5952ri
Tags: 0.3.7-2ubuntu1
 * Merge from Debian unstable. (LP: #225746) Remaining Ubuntu changes:
  - debian/control:
    + Rename ice{weasel,dove}-beagle to {mozilla,thunderbird}-beagle and
      and update the dependencies accordingly.
    + Change Maintainer to Ubuntu Mono Team.
  - debian/rules:
    + Install the mozilla-beagle and thunderbird-beagle extensions.
  - ice{dove,weasel}.dirs:
    + Renamed to {mozilla,thunderbird}-beagle.dirs.
    + Fixed paths to point to usr/lib/{firefox,thunderbird}

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * MessageSet.cs.
 
3
 * Copyright (C) 2006 COLIN Cyrille.
 
4
 *
 
5
 */
 
6
 
 
7
using System;
 
8
using System.Collections;
 
9
 
 
10
 
 
11
namespace System.Net.Imap {
 
12
 
 
13
  public class MessageSet {
 
14
 
 
15
    private ArrayList   _messagesids;
 
16
  
 
17
    public MessageSet(){
 
18
                        _messagesids = new ArrayList();
 
19
                }
 
20
    public ArrayList Messages {
 
21
            set { this._messagesids = value;}
 
22
      get { return this._messagesids;}
 
23
    }
 
24
                public void AddMessage(int Id) {
 
25
                        this._messagesids.Add(Id);
 
26
                }
 
27
  }
 
28
}