org.apache.ws.commons.schema.XmlSchemaSimpleContentExtension.getAttributes()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(152)

本文整理了Java中org.apache.ws.commons.schema.XmlSchemaSimpleContentExtension.getAttributes()方法的一些代码示例,展示了XmlSchemaSimpleContentExtension.getAttributes()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlSchemaSimpleContentExtension.getAttributes()方法的具体详情如下:
包路径:org.apache.ws.commons.schema.XmlSchemaSimpleContentExtension
类名称:XmlSchemaSimpleContentExtension
方法名:getAttributes

XmlSchemaSimpleContentExtension.getAttributes介绍

暂无

代码示例

代码示例来源:origin: apache/cxf

  1. typeMappingType.getStructOrExceptionOrUnion().add(basetype);
  2. attrMembers = processAttributesAsMembers(ext.getAttributes(), uri);
  3. } else if (simpleContent.getContent() instanceof XmlSchemaSimpleContentRestriction) {
  4. XmlSchemaSimpleContentRestriction restrict

代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs

  1. XmlSchemaSimpleContentExtension extension = (XmlSchemaSimpleContentExtension)content;
  2. XmlSchemaUtils.addImportIfNeeded(schema, extension.getBaseTypeName());
  3. addCrossImportsAttributeList(schema, extension.getAttributes());
  4. } else if (content instanceof XmlSchemaSimpleContentRestriction) {
  5. XmlSchemaSimpleContentRestriction restriction = (XmlSchemaSimpleContentRestriction)content;

代码示例来源:origin: apache/cxf

  1. XmlSchemaSimpleContentExtension extension = (XmlSchemaSimpleContentExtension)content;
  2. XmlSchemaUtils.addImportIfNeeded(schema, extension.getBaseTypeName());
  3. addCrossImportsAttributeList(schema, extension.getAttributes());
  4. } else if (content instanceof XmlSchemaSimpleContentRestriction) {
  5. XmlSchemaSimpleContentRestriction restriction = (XmlSchemaSimpleContentRestriction)content;

代码示例来源:origin: org.apache.cxf/cxf-core

  1. XmlSchemaSimpleContentExtension extension = (XmlSchemaSimpleContentExtension)content;
  2. XmlSchemaUtils.addImportIfNeeded(schema, extension.getBaseTypeName());
  3. addCrossImportsAttributeList(schema, extension.getAttributes());
  4. } else if (content instanceof XmlSchemaSimpleContentRestriction) {
  5. XmlSchemaSimpleContentRestriction restriction = (XmlSchemaSimpleContentRestriction)content;

代码示例来源:origin: org.apache.cxf/cxf-api

  1. XmlSchemaSimpleContentExtension extension = (XmlSchemaSimpleContentExtension)content;
  2. XmlSchemaUtils.addImportIfNeeded(schema, extension.getBaseTypeName());
  3. addCrossImportsAttributeList(schema, extension.getAttributes());
  4. } else if (content instanceof XmlSchemaSimpleContentRestriction) {
  5. XmlSchemaSimpleContentRestriction restriction = (XmlSchemaSimpleContentRestriction)content;

代码示例来源:origin: org.apache.cxf/cxf-common-utilities

  1. XmlSchemaSimpleContentExtension extension = (XmlSchemaSimpleContentExtension)content;
  2. XmlSchemaUtils.addImportIfNeeded(schema, extension.getBaseTypeName());
  3. addCrossImportsAttributeList(schema, extension.getAttributes());
  4. } else if (content instanceof XmlSchemaSimpleContentRestriction) {
  5. XmlSchemaSimpleContentRestriction restriction = (XmlSchemaSimpleContentRestriction)content;

代码示例来源:origin: apache/axis2-java

  1. for (XmlSchemaAttributeOrGroupRef attr : extension.getAttributes()) {
  2. if (attr instanceof XmlSchemaAttribute) {
  3. processAttribute((XmlSchemaAttribute) attr, metaInfHolder, parentSchema);

代码示例来源:origin: org.apache.axis2/axis2-adb-codegen

  1. for (XmlSchemaAttributeOrGroupRef attr : extension.getAttributes()) {
  2. if (attr instanceof XmlSchemaAttribute) {
  3. processAttribute((XmlSchemaAttribute) attr, metaInfHolder, parentSchema);

相关文章