Package org.w3c.tidy

Class StyleProp


  • public class StyleProp
    extends java.lang.Object
    Linked list of style properties.
    Version:
    $Revision: 587 $ ($Author: fgiust $)
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String name
      Style name.
      protected StyleProp next
      Next linked style property.
      protected java.lang.String value
      Style value.
    • Constructor Summary

      Constructors 
      Constructor Description
      StyleProp​(java.lang.String name, java.lang.String value, StyleProp next)
      Instantiates a new style property.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • name

        protected java.lang.String name
        Style name.
      • value

        protected java.lang.String value
        Style value.
      • next

        protected StyleProp next
        Next linked style property.
    • Constructor Detail

      • StyleProp

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