01: /*
02: * Created on 10-Jan-2006
03: */
04: package uk.org.ponder.beanutil.entity;
05:
06: import uk.org.ponder.beanutil.BeanLocator;
07:
08: public class NewEntityEntry {
09: public Object newent;
10: public String tempid;
11: public BeanLocator holder;
12:
13: public NewEntityEntry(Object newent, String tempid,
14: BeanLocator holder) {
15: this.newent = newent;
16: this.tempid = tempid;
17: this.holder = holder;
18: }
19: }
|