1 package org.apache.ojb.odmg.collections; 2 3 17 18 import java.io.Serializable ; 19 20 25 public class DSetEntry extends DListEntry implements Serializable  26 { 27 private static final long serialVersionUID = 6334656303221694908L; 28 29 32 public DSetEntry() 33 { 34 super(); 35 } 36 37 42 public DSetEntry(DSetImpl theDSet, Object theObject) 43 { 44 this.position = theDSet.size(); 45 this.dlistId = theDSet.getId(); 46 this.realSubject = theObject; 47 this.pbKey = getPBKey(); 48 } 49 } 50 | Popular Tags |