01: /*
02: * Created on Nov 29, 2005
03: */
04: package uk.org.ponder.reflect;
05:
06: import uk.org.ponder.mapping.DARApplier;
07: import uk.org.ponder.saxalizer.SAXalXMLProvider;
08: import uk.org.ponder.saxalizer.SAXalizerMappingContext;
09:
10: /** An "all-in-one" collection of the central PonderUtil reflective/mapping
11: * helper objects. It seems inevitable that if you need one of these you will
12: * need one or more of the others. Currently disused.
13: * @author Antranig Basman (antranig@caret.cam.ac.uk)
14: *
15: */
16: public class MappingKit {
17: public SAXalizerMappingContext mappingcontext;
18: public SAXalXMLProvider xmlprovider;
19: public DeepBeanCloner deepbeancloner;
20: public ReflectiveCache reflectivecache;
21: public DARApplier darapplier;
22: }
|