KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > relation > rcycle > Util


1 // Util.java
2

3 package org.objectweb.jonas.jtests.beans.relation.rcycle;
4
5 /**
6  * Utility class
7  * @author Helene Joanin
8  */

9
10 public interface Util {
11
12     int SEX_MALE = 1;
13     int SEX_FEMALE = 2;
14
15 }
16
Popular Tags