Searched defs:SEIContext (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DAnnotationProcessorContext.java48 private Map<String, SEIContext> seiContextMap;
54 seiContextMap = new HashMap<String, SEIContext>();
57 public void addSEIContext(String seiName, SEIContext seiContext) {
61 public SEIContext getSEIContext(String seiName) {
62 SEIContext context = seiContextMap.get(seiName);
64 context = new SEIContext(seiName);
70 public SEIContext getSEIContext(TypeDeclaration d) {
71 SEIContext context = getSEIContext(d.getQualifiedName());
75 public Collection<SEIContext> getSEIContexts() {
109 public static class SEIContext { class in class:AnnotationProcessorContext
119 public SEIContext(String seiName) { method in class:AnnotationProcessorContext.SEIContext
[all...]

Completed in 31 milliseconds