当前位置: 首页>>代码示例>>Java>>正文


Java Stylesheet类代码示例

本文整理汇总了Java中com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet的典型用法代码示例。如果您正苦于以下问题:Java Stylesheet类的具体用法?Java Stylesheet怎么用?Java Stylesheet使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Stylesheet类属于com.sun.org.apache.xalan.internal.xsltc.compiler包,在下文中一共展示了Stylesheet类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: NodeSortRecordFactGenerator

import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet; //导入依赖的package包/类
public NodeSortRecordFactGenerator(String className, String superClassName,
                               String fileName,
                               int accessFlags, String[] interfaces,
                               Stylesheet stylesheet) {
    super(className, superClassName, fileName,
          accessFlags, interfaces, stylesheet);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:NodeSortRecordFactGenerator.java

示例2: FilterGenerator

import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet; //导入依赖的package包/类
public FilterGenerator(String className, String superClassName,
                       String fileName,
                       int accessFlags, String[] interfaces,
                       Stylesheet stylesheet) {
    super(className, superClassName, fileName,
          accessFlags, interfaces, stylesheet);

    _aloadTranslet = new ALOAD(TRANSLET_INDEX);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:FilterGenerator.java

示例3: ClassGenerator

import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet; //导入依赖的package包/类
public ClassGenerator(String class_name, String super_class_name,
                      String file_name,
                      int access_flags, String[] interfaces,
                      Stylesheet stylesheet) {
    super(class_name, super_class_name, file_name,
          access_flags, interfaces);
    _stylesheet = stylesheet;
    _parser = stylesheet.getParser();
    _aloadTranslet = new ALOAD(TRANSLET_INDEX);

    if (stylesheet.isMultiDocument()) {
        _domClass = "com.sun.org.apache.xalan.internal.xsltc.dom.MultiDOM";
        _domClassSig = "Lcom/sun/org/apache/xalan/internal/xsltc/dom/MultiDOM;";
    }
    else {
        _domClass = "com.sun.org.apache.xalan.internal.xsltc.dom.DOMAdapter";
        _domClassSig = "Lcom/sun/org/apache/xalan/internal/xsltc/dom/DOMAdapter;";
    }
    _applyTemplatesSig = "("
        + Constants.DOM_INTF_SIG
        + Constants.NODE_ITERATOR_SIG
        + Constants.TRANSLET_OUTPUT_SIG
        + ")V";

_applyTemplatesSigForImport = "("
    + Constants.DOM_INTF_SIG
    + Constants.NODE_ITERATOR_SIG
    + Constants.TRANSLET_OUTPUT_SIG
    + Constants.NODE_FIELD_SIG
    + ")V";
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:32,代码来源:ClassGenerator.java

示例4: NodeSortRecordGenerator

import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet; //导入依赖的package包/类
public NodeSortRecordGenerator(String className, String superClassName,
                               String fileName,
                               int accessFlags, String[] interfaces,
                               Stylesheet stylesheet) {
    super(className, superClassName, fileName,
          accessFlags, interfaces, stylesheet);
    _aloadTranslet = new ALOAD(TRANSLET_INDEX);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:NodeSortRecordGenerator.java

示例5: getFileName

import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet; //导入依赖的package包/类
private String getFileName(SyntaxTreeNode node) {
    Stylesheet stylesheet = node.getStylesheet();
    if (stylesheet != null)
        return stylesheet.getSystemId();
    else
        return null;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:ErrorMsg.java

示例6: NodeCounterGenerator

import com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet; //导入依赖的package包/类
public NodeCounterGenerator(String className,
                            String superClassName,
                            String fileName,
                            int accessFlags,
                            String[] interfaces,
                            Stylesheet stylesheet) {
    super(className, superClassName, fileName,
          accessFlags, interfaces, stylesheet);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:NodeCounterGenerator.java


注:本文中的com.sun.org.apache.xalan.internal.xsltc.compiler.Stylesheet类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。