org.apache.xalan.processor.XSLTElementDef.setElementProcessor()方法的使用及代码示例

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

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

XSLTElementDef.setElementProcessor介绍

[英]Set the XSLTElementProcessor for this element.
[中]为此元素设置XSLTElementProcessor。

代码示例

代码示例来源:origin: robovm/robovm

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: xalan/xalan

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: robovm/robovm

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: xalan/xalan

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: FlexoVM/flexovm

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: com.bugvm/bugvm-rt

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

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

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: com.gluonhq/robovm-rt

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: MobiVM/robovm

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: ibinti/bugvm

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

  1. /**
  2. * Construct an instance of XSLTElementDef that represents text.
  3. *
  4. * @param classObject The class of the object that this element def should produce.
  5. * @param contentHandler The element processor for this element.
  6. * @param type Content type, one of T_ELEMENT, T_PCDATA, or T_ANY.
  7. */
  8. XSLTElementDef(Class classObject, XSLTElementProcessor contentHandler,
  9. int type)
  10. {
  11. this.m_classObject = classObject;
  12. this.m_type = type;
  13. setElementProcessor(contentHandler);
  14. }

代码示例来源:origin: ibinti/bugvm

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: MobiVM/robovm

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: com.bugvm/bugvm-rt

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

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

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: FlexoVM/flexovm

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

  1. this.m_attributes = attributes;
  2. setElementProcessor(contentHandler);

相关文章