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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DBuiltinLeafInfoImpl.java46 private final QName[] typeNames; field in class:BuiltinLeafInfoImpl
48 protected BuiltinLeafInfoImpl(TypeT type, QName... typeNames) { argument
49 super(type, typeNames.length>0?typeNames[0]:null);
50 this.typeNames = typeNames;
60 return typeNames;
H A DModelBuilder.java83 private final Map<QName,TypeInfo> typeNames = new HashMap<QName,TypeInfo>(); field in class:ModelBuilder
283 TypeInfo old = typeNames.put(t,r);
H A DRuntimeBuiltinLeafInfoImpl.java105 private RuntimeBuiltinLeafInfoImpl(Class type, QName... typeNames) { argument
106 super(type, typeNames);
138 protected StringImpl(Class type, QName... typeNames) { argument
139 super(type,typeNames);
157 protected PcdataImpl(Class type, QName... typeNames) { argument
158 super(type,typeNames);
1018 public StringImplImpl(Class type, QName[] typeNames) { argument
1019 super(type, typeNames);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleElementNodeProperty.java68 private final Map<Class,TagAndType> typeNames = new HashMap<Class,TagAndType>(); field in class:SingleElementNodeProperty
92 typeNames.put( beanInfo.jaxbType, new TagAndType(
121 TagAndType tt=typeNames.get(vtype); // quick way that usually works
124 for (Map.Entry<Class,TagAndType> e : typeNames.entrySet()) {
139 w.startElement(typeNames.values().iterator().next().tagName,null);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DJaxBeanInfo.java84 protected JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, QName[] typeNames, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
85 this(grammar,rti,jaxbType,(Object)typeNames,isElement,isImmutable,hasLifecycleEvents);

Completed in 50 milliseconds