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