KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.columba.addressbook.model;
2
3 public interface IEmailModel {
4
5     /**
6      * @return Returns the address.
7      */

8     public abstract String JavaDoc getAddress();
9
10     /**
11      * @return Returns the type.
12      */

13     public abstract int getType();
14
15     public abstract String JavaDoc getTypeString();
16
17 }
Popular Tags