KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > pim > business > api > ContactTypeI


1 package org.enhydra.pim.business.api;
2
3 /**
4  * @author P.Djojic Apr 20, 2005 9:14:18 PM
5  *
6  * TODO ContactTypeI
7  */

8
9 public interface ContactTypeI extends BasePimInterface{
10
11     /**
12      * Sets Contact_type.
13      * @param _contact_type new value.
14      *
15      * @uml.property name="contact_type"
16      */

17     public void setContact_type(String JavaDoc _contact_type);
18
19     /**
20      * Return value of Contact_type.
21      * @return value of Contact_type.
22      *
23      * @uml.property name="contact_type"
24      */

25     public String JavaDoc getContact_type();
26
27     
28 }
Popular Tags