Home | History | Annotate | Download | only in parser

Lines Matching defs:flow

45     public enum Flow {
56 private final Flow flow;
61 * NOTE: Even though breaksFlow and flow are named similarly, they're not quite the same thing.
62 * Flow refers to whether the element is inherently character or block level. Breaks flow
65 * @throws IllegalArgumentException if name or flow is null.
68 boolean optionalEndTag, boolean breaksFlow, Flow flow) {
70 Preconditions.checkNotNull(flow, "Element flow can not be null");
76 this.flow = flow;
84 this(name, type, empty, optionalEndTag, breaksFlow, Flow.NONE);
108 * True if it breaks the flow, and may force a new line before/after the
115 /** Flow type. */
116 public Flow getFlow() {
117 return flow;