Package org.w3c.tidy

Class StyleProp


  • public class StyleProp
    extends Object
    Linked list of style properties.
    Version:
    $Revision$ ($Author$)
    Author:
    Dave Raggett dsr@w3.org , Andy Quick ac.quick@sympatico.ca (translation to Java), Fabrizio Giustina
    • Field Detail

      • name

        protected String name
        Style name.
      • value

        protected String value
        Style value.
      • next

        protected StyleProp next
        Next linked style property.
    • Constructor Detail

      • 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.