1 18 package org.objectweb.speedo.pobjects.userid; 19 20 import java.util.Collection ; 21 22 26 public class Ref2AutoIncFieldId { 27 28 private String f1 = "toto"; 29 private AutoIncFieldId simpleRef; 30 private Collection refs; 31 32 public Ref2AutoIncFieldId() { 33 } 34 35 public Ref2AutoIncFieldId(AutoIncFieldId simpleRef, Collection refs) { 36 this.simpleRef = simpleRef; 37 this.refs = refs; 38 } 39 40 public AutoIncFieldId getSimpleRef() { 41 return simpleRef; 42 } 43 44 public Collection getCollectionOfRefs() { 45 return refs; 46 } 47 } 48 | Popular Tags |