// 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, SLAC, Stanford University, U.S.A. // AID - Compiler Test File package org.freehep.aid.test; /** * TestInterface to test the aid compiler. * * @author Mark Donszelmann */ public interface ITestPrimitives { /** * primitive method * * @return boolean */ public boolean returnBoolean(); /** * primitive method * * @return int */ public int returnInt(); /** * primitive method * * @return double */ public double returnDouble(); /** * primitive method * * @return float */ public float returnFloat(); } // class or interface