DomBuilder base

This commit is contained in:
Tobe O 2019-03-23 10:00:39 -04:00
parent 3b0ed56e48
commit eb29750ca2

View file

@ -0,0 +1,9 @@
abstract class DomBuilder<T> {
DomBuilderElement<T> open(String tagName);
void emitText(String value);
}
abstract class DomBuilderElement<T> implements DomBuilder<T> {
T close();
}