001         package com.croftsoft.core.animation.model.seri;
002    
003         import com.croftsoft.core.util.id.LongId;
004    
005         import com.croftsoft.core.animation.model.ModelId;
006    
007         /*********************************************************************
008         * A Serializable ModelId.
009         *
010         * @version
011         *   2003-06-07
012         * @since
013         *   2003-06-07
014         * @author
015         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
016         *********************************************************************/
017    
018         public final class  SeriModelId
019           extends LongId
020           implements ModelId
021         //////////////////////////////////////////////////////////////////////
022         //////////////////////////////////////////////////////////////////////
023         {
024    
025         private static final long  serialVersionUID = 0L;
026    
027         //////////////////////////////////////////////////////////////////////
028         //////////////////////////////////////////////////////////////////////
029    
030         public  SeriModelId ( long  l )
031         //////////////////////////////////////////////////////////////////////
032         {
033           super ( l );
034         }
035    
036         //////////////////////////////////////////////////////////////////////
037         //////////////////////////////////////////////////////////////////////
038         }