1 // Util.java2 3 package org.objectweb.jonas.jtests.beans.relation.rcycle;4 5 /**6 * Utility class7 * @author Helene Joanin8 */9 10 public interface Util {11 12 int SEX_MALE = 1;13 int SEX_FEMALE = 2;14 15 }16