public final DocOpBuilder deleteElementStart(String type, Attributes attrs) {
accu.add(new DeleteElementStart(type, attrs));
return this;
}
public final DocOpBuilder replaceAttributes(Attributes oldAttrs, Attributes newAttrs) {
accu.add(new ReplaceAttributes(oldAttrs, newAttrs));
return this;
}