equal
deleted
inserted
replaced
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 } |