IndexedRecord.java |
/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. See terms of license at gnu.org. */ package javax.resource.cci; /** * The IndexedRecord interface is used for list oriented representations of the * Record elements. */ public interface IndexedRecord extends Record, java.util.List, java.io.Serializable { }
IndexedRecord.java |