01: package org.columba.addressbook.model;
02:
03: public interface IEmailModel {
04:
05: /**
06: * @return Returns the address.
07: */
08: public abstract String getAddress();
09:
10: /**
11: * @return Returns the type.
12: */
13: public abstract int getType();
14:
15: public abstract String getTypeString();
16:
17: }
|