// 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 2005, FreeHEP. // AID - Compiler Test File package org.freehep.aid.test; /** * TestGenericsDefine to test the aid compiler. * * @author Mark Donszelmann */ public interface ITestGenericsDefine<T> { public boolean fill(T value); public T get(); public boolean bind(T variable); public void unbind(T variable); } // class or interface