gpt4 book ai didi

net.sf.saxon.style.XSLDocument类的使用及代码示例

转载 作者:知者 更新时间:2024-03-20 18:53:40 26 4
gpt4 key购买 nike

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

XSLDocument介绍

[英]An xsl:document instruction in the stylesheet.
This instruction creates a document node in the result tree, optionally validating it.
[中]样式表中的xsl:document指令。
此指令在结果树中创建一个文档节点,可以选择对其进行验证。

代码示例

代码示例来源:origin: stackoverflow.com

"  </xsl:template>\n" +
  "</xsl:stylesheet>";
XML second = new XSLDocument(
  String.format(template, "normal", "comment", "normal", "comment", "normal")
).transform(first);

代码示例来源:origin: net.sf.saxon/Saxon-HE

public void prepareAttributes() throws XPathException {
  AttributeCollection atts = getAttributeList();
  String validationAtt = null;
  String typeAtt = null;
  for (int a = 0; a < atts.getLength(); a++) {
    String f = atts.getQName(a);
    if (f.equals("validation")) {
      validationAtt = Whitespace.trim(atts.getValue(a));
    } else if (f.equals("type")) {
      typeAtt = Whitespace.trim(atts.getValue(a));
    } else {
      checkUnknownAttribute(atts.getNodeName(a));
    }
  }
  if (validationAtt == null) {
    validationAction = getDefaultValidation();
  } else {
    validationAction = validateValidationAttribute(validationAtt);
  }
  if (typeAtt != null) {
    if (!isSchemaAware()) {
      compileError("The @type attribute is available only with a schema-aware XSLT processor", "XTSE1660");
    }
    schemaType = getSchemaType(typeAtt);
    validationAction = Validation.BY_TYPE;
  }
  if (typeAtt != null && validationAtt != null) {
    compileError("The @validation and @type attributes are mutually exclusive", "XTSE1505");
  }
}

代码示例来源:origin: org.opengis.cite.saxon/saxon9

public Expression compile(Executable exec) throws XPathException {
  DocumentInstr inst = new DocumentInstr(false, null, getBaseURI());
  inst.setValidationAction(validationAction);
  inst.setSchemaType(schemaType);
  Expression b = compileSequenceConstructor(exec, iterateAxis(Axis.CHILD), true);
  if (b == null) {
    b = Literal.makeEmptySequence();
  }
  inst.setContentExpression(b);
  return inst;
}

代码示例来源:origin: net.sourceforge.saxon/saxon

public void prepareAttributes() throws XPathException {
  AttributeCollection atts = getAttributeList();
    String f = getNamePool().getClarkName(nc);
    if (f.equals(StandardNames.VALIDATION)) {
      validationAtt = Whitespace.trim(atts.getValue(a));
      typeAtt = Whitespace.trim(atts.getValue(a));
    } else {
      checkUnknownAttribute(nc);
    validationAction = getContainingStylesheet().getDefaultValidation();
  } else {
    validationAction = Validation.getCode(validationAtt);
    if (validationAction != Validation.STRIP && !getConfiguration().isSchemaAware(Configuration.XSLT)) {
      compileError("To perform validation, a schema-aware XSLT processor is needed", "XTSE1660");
      compileError("Invalid value of @validation attribute", "XTSE0020");
    if (!getConfiguration().isSchemaAware(Configuration.XSLT)) {
      compileError("The @type attribute is available only with a schema-aware XSLT processor", "XTSE1660");
    schemaType = getSchemaType(typeAtt);
    validationAction = Validation.BY_TYPE;
    compileError("The @validation and @type attributes are mutually exclusive", "XTSE1505");

代码示例来源:origin: net.sf.saxon/Saxon-HE

public Expression compile(Compilation exec, ComponentDeclaration decl) throws XPathException {
  DocumentInstr inst = new DocumentInstr(false, null);
  inst.setValidationAction(validationAction, schemaType);
  Expression b = compileSequenceConstructor(exec, decl, true);
  if (b == null) {
    b = Literal.makeEmptySequence();
  }
  inst.setContentExpression(b);
  inst.setLocation(allocateLocation());
  return inst;
}

代码示例来源:origin: org.opengis.cite.saxon/saxon9

public void prepareAttributes() throws XPathException {
  AttributeCollection atts = getAttributeList();
    String f = getNamePool().getClarkName(nc);
    if (f.equals(StandardNames.VALIDATION)) {
      validationAtt = Whitespace.trim(atts.getValue(a));
      typeAtt = Whitespace.trim(atts.getValue(a));
    } else {
      checkUnknownAttribute(nc);
    validationAction = getContainingStylesheet().getDefaultValidation();
  } else {
    validationAction = Validation.getCode(validationAtt);
    if (validationAction != Validation.STRIP && !getConfiguration().isSchemaAware(Configuration.XSLT)) {
      compileError("To perform validation, a schema-aware XSLT processor is needed", "XTSE1660");
      compileError("Invalid value of @validation attribute", "XTSE0020");
    if (!getConfiguration().isSchemaAware(Configuration.XSLT)) {
      compileError("The @type attribute is available only with a schema-aware XSLT processor", "XTSE1660");
    schemaType = getSchemaType(typeAtt);
    validationAction = Validation.BY_TYPE;
    compileError("The @validation and @type attributes are mutually exclusive", "XTSE1505");

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

public Expression compile(Compilation exec, ComponentDeclaration decl) throws XPathException {
  DocumentInstr inst = new DocumentInstr(false, null);
  inst.setValidationAction(validationAction, schemaType);
  Expression b = compileSequenceConstructor(exec, decl, true);
  if (b == null) {
    b = Literal.makeEmptySequence();
  }
  inst.setContentExpression(b);
  inst.setLocation(allocateLocation());
  return inst;
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

public void prepareAttributes() throws XPathException {
  AttributeCollection atts = getAttributeList();
  String validationAtt = null;
  String typeAtt = null;
  for (int a = 0; a < atts.getLength(); a++) {
    String f = atts.getQName(a);
    if (f.equals("validation")) {
      validationAtt = Whitespace.trim(atts.getValue(a));
    } else if (f.equals("type")) {
      typeAtt = Whitespace.trim(atts.getValue(a));
    } else {
      checkUnknownAttribute(atts.getNodeName(a));
    }
  }
  if (validationAtt == null) {
    validationAction = getDefaultValidation();
  } else {
    validationAction = validateValidationAttribute(validationAtt);
  }
  if (typeAtt != null) {
    if (!isSchemaAware()) {
      compileError("The @type attribute is available only with a schema-aware XSLT processor", "XTSE1660");
    }
    schemaType = getSchemaType(typeAtt);
    validationAction = Validation.BY_TYPE;
  }
  if (typeAtt != null && validationAtt != null) {
    compileError("The @validation and @type attributes are mutually exclusive", "XTSE1505");
  }
}

代码示例来源:origin: net.sourceforge.saxon/saxon

return new XSLDecimalFormat();
case StandardNames.XSL_DOCUMENT:
  return new XSLDocument();
case StandardNames.XSL_ELEMENT:
  return new XSLElement();

代码示例来源:origin: net.sourceforge.saxon/saxon

public Expression compile(Executable exec) throws XPathException {
  DocumentInstr inst = new DocumentInstr(false, null, getBaseURI());
  inst.setValidationMode(validationAction);
  inst.setSchemaType(schemaType);
  Expression b = compileSequenceConstructor(exec, iterateAxis(Axis.CHILD), true);
  if (b == null) {
    b = Literal.makeEmptySequence();
  }
  inst.setContentExpression(b);
  return inst;
}

代码示例来源:origin: org.opengis.cite.saxon/saxon9

return new XSLDecimalFormat();
case StandardNames.XSL_DOCUMENT:
  return new XSLDocument();
case StandardNames.XSL_ELEMENT:
  return new XSLElement();

代码示例来源:origin: net.sf.saxon/Saxon-B

return new XSLDecimalFormat();
case StandardNames.XSL_DOCUMENT:
  return new XSLDocument();
case StandardNames.XSL_ELEMENT:
  return new XSLElement();

代码示例来源:origin: net.sf.saxon/Saxon-HE

return new XSLDecimalFormat();
case StandardNames.XSL_DOCUMENT:
  return new XSLDocument();
case StandardNames.XSL_ELEMENT:
  return new XSLElement();

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

return new XSLDecimalFormat();
case StandardNames.XSL_DOCUMENT:
  return new XSLDocument();
case StandardNames.XSL_ELEMENT:
  return new XSLElement();

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com