1 18 package org.objectweb.speedo.pobjects.userid; 19 20 import java.util.Collection ; 21 22 26 public class AutoIncFieldId { 27 28 long id = -1; 29 String f1 = null; 30 float f2 = 0; 31 Collection colOfRef2AutoIncFieldId; 32 Ref2AutoIncFieldId independantRef; 33 34 public AutoIncFieldId() { 35 } 36 37 public AutoIncFieldId(Collection colOfRef2AutoIncFieldId) { 38 this.colOfRef2AutoIncFieldId = colOfRef2AutoIncFieldId; 39 } 40 41 public long getId() { 42 return id; 43 } 44 45 public String getF1() { 46 return f1; 47 } 48 49 public float getF2() { 50 return f2; 51 } 52 53 public void setF1(String f1) { 54 this.f1 = f1; 55 } 56 57 public void setF2(float f2) { 58 this.f2 = f2; 59 } 60 } 61 | Popular Tags |