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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBStructuredType.java43 public JAXBStructuredType(JAXBType jaxbType){ argument
44 super(jaxbType);
H A DJAXBType.java43 public JAXBType(JAXBType jaxbType){ argument
44 setName(jaxbType.getName());
45 this.jaxbMapping = jaxbType.getJaxbMapping();
46 this.jaxbModel = jaxbType.getJaxbModel();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DModelerUtils.java63 * @param jaxbType JAXBType from which a JAXBStructured type will be created.
66 public static JAXBStructuredType createJAXBStructureType(JAXBType jaxbType) { argument
67 JAXBStructuredType type = new JAXBStructuredType(jaxbType);
68 type.setName(jaxbType.getName());
69 type.setJavaType(jaxbType.getJavaType());
78 * @param jaxbType instance of JAXBType, could be JAXBStructured type.
82 public static List<Parameter> createUnwrappedParameters(JAXBType jaxbType, argument
86 if (!(jaxbType instanceof JAXBStructuredType))
87 type = createJAXBStructureType(jaxbType);
89 type = (JAXBStructuredType) jaxbType;
112 createUnwrappedParameter(JAXBProperty prop, JAXBType jaxbType, Block block, JAXBStructuredType type, JavaStructureType jst) argument
169 createParameter(String partName, AbstractType jaxbType, Block block) argument
[all...]
/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);
91 protected JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, QName typeName, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
92 this(grammar,rti,jaxbType,(Object)typeName,isElement,isImmutable,hasLifecycleEvents);
98 protected JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
99 this(grammar,rti,jaxbType,(Object)null,isElement,isImmutable,hasLifecycleEvents);
102 private JaxBeanInfo(JAXBContextImpl grammar, RuntimeTypeInfo rti, Class<BeanT> jaxbType, Object typeName, boolean isElement,boolean isImmutable, boolean hasLifecycleEvents) { argument
105 this.jaxbType = jaxbType;
130 * True if {@link #jaxbType} ha
166 public final Class<BeanT> jaxbType; field in class:JaxBeanInfo
[all...]

Completed in 39 milliseconds