org.w3c.dom.html.HTMLLIElement Maven / Gradle / Ivy
The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//
package org.w3c.dom.html;
import org.w3c.dom.*;
/**
List item. See the
LI element definition
in HTML 4.0.
Property Summary
type
getType
setType
List item bullet style. See the
type attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
value
getValue
setValue
Reset sequence number when used in
OL
See the
value attribute definition
in HTML 4.0. This attribute is deprecated in HTML 4.0.
*/
public interface HTMLLIElement
extends HTMLElement
{
/** Assigns the value of the type
property.
*/
void setType (String type);
/**
* Returns the value of the type
property.
*/
String getType ();
/** Assigns the value of the value
property.
*/
void setValue (int value);
/**
* Returns the value of the value
property.
*/
int getValue ();
}