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