public class FastinfoSetJAXBContextFinder extends XmlJAXBContextFinder implements ContextResolver<JAXBContextFinder>
{
@Override
protected JAXBContext createContextObject(Annotation[] annotations, Class... classes) throws JAXBException
{
JAXBConfig config = FindAnnotation.findAnnotation(annotations, JAXBConfig.class);
JAXBContext context = new FastinfoSetContext(classes);
return new JAXBContextWrapper(context, config);
}