本文整理汇总了Java中org.apache.ws.commons.schema.XmlSchemaType.getQName方法的典型用法代码示例。如果您正苦于以下问题:Java XmlSchemaType.getQName方法的具体用法?Java XmlSchemaType.getQName怎么用?Java XmlSchemaType.getQName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.ws.commons.schema.XmlSchemaType
的用法示例。
在下文中一共展示了XmlSchemaType.getQName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: add
import org.apache.ws.commons.schema.XmlSchemaType; //导入方法依赖的package包/类
public static void add(XmlSchema schema, XmlSchemaType type) {
QName qname = type.getQName();
if (schema.getTypeByName(qname) == null) {
schema.addType(type);
schema.getItems().add(type);
}
}
示例2: remove
import org.apache.ws.commons.schema.XmlSchemaType; //导入方法依赖的package包/类
public static void remove(XmlSchema schema, XmlSchemaType type) {
QName qname = type.getQName();
if (schema.getTypeByName(qname) != null) {
schema.getItems().remove(type);
remove(schema.getSchemaTypes(), qname);
}
}
示例3: end
import org.apache.ws.commons.schema.XmlSchemaType; //导入方法依赖的package包/类
@Override
public void end(OperationInfo op) {
// we only process the wrapped operation, not the unwrapped alternative.
if (op.isUnwrapped()) {
return;
}
if (!op.isUnwrappedCapable())
throw new RuntimeException("only wrapped is supported");
collectWrapperElementInfo();
QName contextQName = inputWrapperComplexType.getQName();
if (contextQName == null) {
contextQName = inputWrapperElement.getQName();
}
XmlSchemaSequence sequence = XmlSchemaUtils.getSequence(inputWrapperComplexType);
XmlSchema wrapperSchema = xmlSchemaCollection.getSchemaByTargetNamespace(contextQName.getNamespaceURI());
List<Argument> arguments = Lists.newArrayList();
for (int i = 0; i < sequence.getItems().size(); i++) {
XmlSchemaSequenceMember sequenceItem = sequence.getItems().get(i);
ParticleInfo itemInfo = ParticleInfo.forLocalItem((XmlSchemaObject) sequenceItem, wrapperSchema, xmlSchemaCollection, prefixAccumulator, contextQName);
TypeHint typeHint;
XmlSchemaType type = itemInfo.getType(); // null for an any.
if (type instanceof XmlSchemaComplexType) {
QName baseName;
if (type.getQName() != null) {
baseName = type.getQName();
} else {
baseName = ((XmlSchemaElement) sequenceItem).getQName();
}
typeHint = new TypeHint(itemInfo.isArray(), nameManager.getAbsolutePhpClassName(baseName));
} else {
typeHint = new TypeHint(itemInfo.isArray());
}
arguments.add(new Argument(typeHint, itemInfo.getXmlName()));
}
TypeHint returnType = findReturnType(currentOperation);
current.addOperation(new Operation(nameManager.getPhpName(currentOperation.getName()), returnType, arguments));
}