Here you can find the source of getContext(String uddiVersion)
public static JAXBContext getContext(String uddiVersion)
//package com.java2s; //License from project: Apache License import javax.xml.bind.JAXBContext; import java.util.HashMap; import java.util.Map; public class Main { private static final Map<String, JAXBContext> JAXBContexts = new HashMap<String, JAXBContext>(); public static JAXBContext getContext(String uddiVersion) { return JAXBContexts.get(uddiVersion); }/*from w w w .j a v a2 s . c o m*/ }