Module jdk.xml.dom

Interface StyleSheetList


public interface StyleSheetList
StyleSheetList接口提供了样式表的有序集合的抽象表示。

StyleSheetList中的项目可以通过整数索引访问,从0开始。

另请参阅文档对象模型(DOM)Level 2 样式规范

自从:
1.4, DOM Level 2
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    列表中StyleSheets的数量。
    item(int index)
    通过序号索引检索样式表。
  • Method Details

    • getLength

      int getLength()
      列表中StyleSheets的数量。有效子样式表索引的范围是从0length-1
    • item

      StyleSheet item(int index)
      通过序号索引检索样式表。如果索引大于或等于列表中样式表的数量,则返回null
      参数:
      index - 集合中的索引
      返回:
      StyleSheetList中位置为index的样式表,如果该索引无效则返回null