KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > addressbook > model > IGroupModelPartial


1 package org.columba.addressbook.model;
2
3 import java.util.List JavaDoc;
4
5 import org.columba.addressbook.facade.IContactItem;
6
7
8 // The contents of this file are subject to the Mozilla Public License Version
9
// 1.1
10
//(the "License"); you may not use this file except in compliance with the
11
//License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
12
//
13
//Software distributed under the License is distributed on an "AS IS" basis,
14
//WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
15
//for the specific language governing rights and
16
//limitations under the License.
17
//
18
//The Original Code is "The Columba Project"
19
//
20
//The Initial Developers of the Original Code are Frederik Dietz and Timo
21
// Stich.
22
//Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
23
//
24
//All Rights Reserved.
25
/**
26  * @author fdietz
27  *
28  */

29 public interface IGroupModelPartial extends IBasicModelPartial{
30     
31     public void addContact(IContactModelPartial modelPartial);
32     
33     public void removeContact(IContactModelPartial modelPartial);
34     
35     public int getContactCount();
36     
37     public List JavaDoc<IContactModelPartial> retrieveContacts();
38     
39 }
Popular Tags