All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLOListElement 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.*;

/**

  

Ordered list. See the OL element definition in HTML 4.0.


Property Summary
 compact getCompact setCompact

Reduce spacing between list items. See the compact attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 start getStart setStart

Starting sequence number. See the start attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

 type getType setType

Numbering style. See the type attribute definition in HTML 4.0. This attribute is deprecated in HTML 4.0.

  */ public interface HTMLOListElement extends HTMLElement { /** Assigns the value of the compact property. */ void setCompact (boolean compact); /** * Returns the value of the compact property. */ boolean getCompact (); /** Assigns the value of the start property. */ void setStart (int start); /** * Returns the value of the start property. */ int getStart (); /** Assigns the value of the type property. */ void setType (String type); /** * Returns the value of the type property. */ String getType (); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy