Home | History | Annotate | Download | only in parser

Lines Matching refs:flow

46     public enum Flow {
57 private final Flow flow;
62 * NOTE: Even though breaksFlow and flow are named similarly, they're not quite the same thing.
63 * Flow refers to whether the element is inherently character or block level. Breaks flow
66 * @throws IllegalArgumentException if name or flow is null.
69 boolean optionalEndTag, boolean breaksFlow, Flow flow) {
71 Preconditions.checkNotNull(flow, "Element flow can not be null");
77 this.flow = flow;
85 this(name, type, empty, optionalEndTag, breaksFlow, Flow.NONE);
109 * True if it breaks the flow, and may force a new line before/after the
116 /** Flow type. */
117 public Flow getFlow() {
118 return flow;