// AID-GENERATED // ========================================================================= // This class was generated by AID - Abstract Interface Definition // DO NOT MODIFY, but use the org.freehep.aid.Aid utility to regenerate it. // ========================================================================= // Copyright 2002-2005, FreeHEP. // AID - Compiler Test File package org.freehep.aid.test; /** * TestInterface to test the aid compiler. * * @author Mark Donszelmann */ public interface ITestEnumerations { /** * Sample enum */ public final static int UNDERFLOW_BIN = -2, OVERFLOW_BIN = -1; /** * Sample enum */ public final static int FIVE = 5, SIX = 6, SEVEN = 7, NINE = 9, TEN = 10; /** * Sample enum */ public final static int ONE = 1; /** * Named Enum */ public static interface Unit { public final static int PIXELS = 0, PERCENT = 1, DATA_VALUE = 2; } // Unit } // class or interface