1 package org.columba.addressbook.model;2 3 public interface IEmailModel {4 5 /**6 * @return Returns the address.7 */8 public abstract String getAddress();9 10 /**11 * @return Returns the type.12 */13 public abstract int getType();14 15 public abstract String getTypeString();16 17 }