本文整理汇总了Java中com.sun.xml.internal.bind.api.CompositeStructure类的典型用法代码示例。如果您正苦于以下问题:Java CompositeStructure类的具体用法?Java CompositeStructure怎么用?Java CompositeStructure使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CompositeStructure类属于com.sun.xml.internal.bind.api包,在下文中一共展示了CompositeStructure类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: build
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
/**
* Packs a bunch of arguments intoa {@link CompositeStructure}.
*/
CompositeStructure build(Object[] methodArgs) {
CompositeStructure cs = new CompositeStructure();
cs.bridges = parameterBridges;
cs.values = new Object[parameterBridges.length];
// fill in wrapped parameters from methodArgs
for( int i=indices.length-1; i>=0; i-- ) {
Object arg = getters[i].get(methodArgs[indices[i]]);
if(arg==null) {
throw new WebServiceException("Method Parameter: "+
children.get(i).getName()+" cannot be null. This is BP 1.1 R2211 violation.");
}
cs.values[i] = arg;
}
return cs;
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:21,代码来源:BodyBuilder.java
示例2: build
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
/**
* Packs a bunch of arguments intoa {@link CompositeStructure}.
*/
CompositeStructure build(Object[] methodArgs, Object returnValue) {
CompositeStructure cs = new CompositeStructure();
cs.bridges = parameterBridges;
cs.values = new Object[parameterBridges.length];
// fill in wrapped parameters from methodArgs
for( int i=indices.length-1; i>=0; i-- ) {
Object v;
if (indices[i] == -1) {
v = getters[i].get(returnValue);
} else {
v = getters[i].get(methodArgs[indices[i]]);
}
if(v==null) {
throw new WebServiceException("Method Parameter: "+
children.get(i).getName() +" cannot be null. This is BP 1.1 R2211 violation.");
}
cs.values[i] = v;
}
return cs;
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:26,代码来源:EndpointResponseMessageBuilder.java
示例3: newContext
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
@Override
public BindingContext newContext(BindingInfo bi) {
Class[] classes = bi.contentClasses().toArray(new Class[bi.contentClasses().size()]);
for (int i = 0; i < classes.length; i++) {
if (WrapperComposite.class.equals(classes[i])) {
classes[i] = CompositeStructure.class;
}
}
Map<TypeInfo, TypeReference> typeInfoMappings = typeInfoMappings(bi.typeInfos());
Map<Class, Class> subclassReplacements = bi.subclassReplacements();
String defaultNamespaceRemap = bi.getDefaultNamespace();
Boolean c14nSupport = (Boolean) bi.properties().get("c14nSupport");
RuntimeAnnotationReader ar = (RuntimeAnnotationReader) bi.properties().get("com.sun.xml.internal.bind.v2.model.annotation.RuntimeAnnotationReader");
JAXBContextFactory jaxbContextFactory = (JAXBContextFactory) bi.properties().get(JAXBContextFactory.class.getName());
try {
JAXBRIContext context = (jaxbContextFactory != null)
? jaxbContextFactory.createJAXBContext(
bi.getSEIModel(),
toList(classes),
toList(typeInfoMappings.values()))
: ContextFactory.createContext(
classes, typeInfoMappings.values(),
subclassReplacements, defaultNamespaceRemap,
(c14nSupport != null) ? c14nSupport : false,
ar, false, false, false);
return new JAXBRIContextWrapper(context, typeInfoMappings);
} catch (Exception e) {
throw new DatabindingException(e);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:31,代码来源:JAXBRIContextFactory.java
示例4: typeInfoMappings
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
private Map<TypeInfo, TypeReference> typeInfoMappings(Collection<TypeInfo> typeInfos) {
Map<TypeInfo, TypeReference> map = new java.util.HashMap<TypeInfo, TypeReference>();
for (TypeInfo ti : typeInfos) {
Type type = WrapperComposite.class.equals(ti.type) ? CompositeStructure.class : ti.type;
TypeReference tr = new TypeReference(ti.tagName, type, ti.annotations);
map.put(ti, tr);
}
return map;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:JAXBRIContextFactory.java
示例5: convert
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
static CompositeStructure convert(Object o) {
WrapperComposite w = (WrapperComposite) o;
CompositeStructure cs = new CompositeStructure();
cs.values = w.values;
cs.bridges = new Bridge[w.bridges.length];
for (int i = 0; i < cs.bridges.length; i++) {
cs.bridges[i] = ((BridgeWrapper) w.bridges[i]).getBridge();
}
return cs;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:WrapperBridge.java
示例6: add
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
/**
* Adds an additional element declaration.
*
* @param tagName
* The name of the element declaration to be added.
* @param type
* The type this element refers to.
* Can be null, in which case the element refers to an empty anonymous complex type.
*/
public void add( QName tagName, boolean isNillable, NonElement<T,C> type ) {
if(type!=null && type.getType()==navigator.ref(CompositeStructure.class))
return; // this is a special class we introduced for JAX-WS that we *don't* want in the schema
Namespace n = getNamespace(tagName.getNamespaceURI());
n.elementDecls.put(tagName.getLocalPart(), n.new ElementWithType(isNillable,type));
// search for foreign namespace references
if(type!=null)
n.addDependencyTo(type.getTypeName());
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:23,代码来源:XmlSchemaGenerator.java
示例7: serializeRoot
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
public void serializeRoot(CompositeStructure o, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
target.reportError(
new ValidationEventImpl(
ValidationEvent.ERROR,
Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(o.getClass().getName()),
null,
null));
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:CompositeStructureBeanInfo.java
示例8: serializeBody
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
public void serializeBody(CompositeStructure o, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
int len = o.bridges.length;
for( int i=0; i<len; i++ ) {
Object value = o.values[i];
InternalBridge bi = (InternalBridge)o.bridges[i];
bi.marshal( value, target );
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:CompositeStructureBeanInfo.java
示例9: createSchemaGenerator
import com.sun.xml.internal.bind.api.CompositeStructure; //导入依赖的package包/类
private XmlSchemaGenerator<Type,Class,Field,Method> createSchemaGenerator() {
RuntimeTypeInfoSet tis;
try {
tis = getTypeInfoSet();
} catch (IllegalAnnotationsException e) {
// this shouldn't happen because we've already
throw new AssertionError(e);
}
XmlSchemaGenerator<Type,Class,Field,Method> xsdgen =
new XmlSchemaGenerator<Type,Class,Field,Method>(tis.getNavigator(),tis);
// JAX-RPC uses Bridge objects that collide with
// @XmlRootElement.
// we will avoid collision here
Set<QName> rootTagNames = new HashSet<QName>();
for (RuntimeElementInfo ei : tis.getAllElements()) {
rootTagNames.add(ei.getElementName());
}
for (RuntimeClassInfo ci : tis.beans().values()) {
if(ci.isElement())
rootTagNames.add(ci.asElement().getElementName());
}
for (TypeReference tr : bridges.keySet()) {
if(rootTagNames.contains(tr.tagName))
continue;
if(tr.type==void.class || tr.type==Void.class) {
xsdgen.add(tr.tagName,false,null);
} else
if(tr.type==CompositeStructure.class) {
// this is a special class we introduced for JAX-WS that we *don't* want in the schema
} else {
NonElement<Type,Class> typeInfo = getXmlType(tis,tr);
xsdgen.add(tr.tagName, !tis.getNavigator().isPrimitive(tr.type),typeInfo);
}
}
return xsdgen;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:41,代码来源:JAXBContextImpl.java
注:本文中的com.sun.xml.internal.bind.api.CompositeStructure类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论