An Op is a member of the sequence of formatting operations emitted by OpsBuilder and transformed by DocBuilder into a Doc. Leaf subclasses of Doc implement Op; Doc.Level is the only non-leaf, and is represented by paired OpenOp-{@link C
| 21 | * OpenOp}-{@link CloseOp} {@code Op}s. |
| 22 | */ |
| 23 | public interface Op { |
| 24 | /** |
| 25 | * Add an {@code Op} to a {@link DocBuilder}. |
| 26 | * |
| 27 | * @param builder the {@link DocBuilder} |
| 28 | */ |
| 29 | void add(DocBuilder builder); |
| 30 | } |
no outgoing calls
no test coverage detected