01: package org.columba.addressbook.model;
02:
03: import java.util.List;
04:
05: import org.columba.addressbook.facade.IContactItem;
06:
07: // The contents of this file are subject to the Mozilla Public License Version
08: // 1.1
09: //(the "License"); you may not use this file except in compliance with the
10: //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
11: //
12: //Software distributed under the License is distributed on an "AS IS" basis,
13: //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14: //for the specific language governing rights and
15: //limitations under the License.
16: //
17: //The Original Code is "The Columba Project"
18: //
19: //The Initial Developers of the Original Code are Frederik Dietz and Timo
20: // Stich.
21: //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
22: //
23: //All Rights Reserved.
24: /**
25: * @author fdietz
26: *
27: */
28: public interface IGroupModelPartial extends IBasicModelPartial {
29:
30: public void addContact(IContactModelPartial modelPartial);
31:
32: public void removeContact(IContactModelPartial modelPartial);
33:
34: public int getContactCount();
35:
36: public List<IContactModelPartial> retrieveContacts();
37:
38: }
|