114115116117118119120
public final void deleteElementEnd() { accu.add(DeleteElementEnd.INSTANCE); } @Override public final void deleteElementStart(String type, Attributes attrs) { accu.add(new DeleteElementStart(type, attrs)); }
9293949596979899
public final DocOpBuilder deleteElementEnd() { accu.add(DeleteElementEnd.INSTANCE); return this; } public final DocOpBuilder deleteElementStart(String type, Attributes attrs) { accu.add(new DeleteElementStart(type, attrs)); return this; }
8990919293949596
111112113114115116117