jdk/src/share/classes/javax/swing/text/html/parser/ContentModel.java
changeset 20169 d7fa6d7586c9
parent 18764 12a1993f109b
child 21278 ef8a3a2a72f2
equal deleted inserted replaced
20168:137788883a22 20169:d7fa6d7586c9
    40  * @author   Arthur van Hoff
    40  * @author   Arthur van Hoff
    41  *
    41  *
    42  */
    42  */
    43 public final class ContentModel implements Serializable {
    43 public final class ContentModel implements Serializable {
    44     /**
    44     /**
    45      * Type. Either '*', '?', '+', ',', '|', '&'.
    45      * Type. Either '*', '?', '+', ',', '|', '&'.
    46      */
    46      */
    47     public int type;
    47     public int type;
    48 
    48 
    49     /**
    49     /**
    50      * The content. Either an Element or a ContentModel.
    50      * The content. Either an Element or a ContentModel.
    51      */
    51      */
    52     public Object content;
    52     public Object content;
    53 
    53 
    54     /**
    54     /**
    55      * The next content model (in a ',', '|' or '&' expression).
    55      * The next content model (in a ',', '|' or '&' expression).
    56      */
    56      */
    57     public ContentModel next;
    57     public ContentModel next;
    58 
    58 
    59     public ContentModel() {
    59     public ContentModel() {
    60     }
    60     }