| 447 | } |
| 448 | |
| 449 | public interface Child { |
| 450 | void emit(DrawDot dot, PrintWriter writer, String indent) throws IOException; |
| 451 | |
| 452 | String id(); |
| 453 | } |
| 454 | |
| 455 | public static class Node extends BaseAttributable<Node> |
| 456 | implements Child, Colored<Node>, Labeled<Node>, Shaped<Node>, NodeStyled<Node>, Commentable<Node> { |