01: // Util.java 02: 03: package org.objectweb.jonas.jtests.beans.relation.rcycle; 04: 05: /** 06: * Utility class 07: * @author Helene Joanin 08: */ 09: 10: public interface Util { 11: 12: int SEX_MALE = 1; 13: int SEX_FEMALE = 2; 14: 15: }