org.w3c.tidy

Class StyleProp


public class StyleProp
extends java.lang.Object

Linked list of style properties.
Version:
$Revision: 587 $ ($Author: fgiust $)
Authors:
Dave Raggett dsr@w3.org
Andy Quick ac.quick@sympatico.ca (translation to Java)
Fabrizio Giustina

Field Summary

protected String
name
Style name.
protected StyleProp
next
Next linked style property.
protected String
value
Style value.

Constructor Summary

StyleProp(String name, String value, StyleProp next)
Instantiates a new style property.

Field Details

name

protected String name
Style name.

StyleProp next
Next linked style property.

value

protected String value
Style value.

Constructor Details

StyleProp

public StyleProp(String name,
                 String value,
                 StyleProp next)
Instantiates a new style property.
Parameters:
name - Style name
value - Style value
next - Next linked style property. Can be null.