htmllielement.java

来自「使用方法: 实例程序的运行: 每个实例下都有本实例的.xml文件或.htm」· Java 代码 · 共 24 行

JAVA
24
字号
package org.w3c.dom.html;

import org.w3c.dom.*;

/**
 * List item. See the LI element definition in HTML 4.0.
 */
public interface HTMLLIElement extends HTMLElement {
  /**
   * List item bullet style. See the type attribute definition in HTML 4.0. 
   * This attribute is deprecated in HTML 4.0.
   */
  public String             getType();
  public void               setType(String type);
  /**
   * Reset sequence number when used in <code>OL</code> See the value 
   * attribute definition in HTML 4.0. This attribute is deprecated in HTML 
   * 4.0.
   */
  public int                getValue();
  public void               setValue(int value);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?