public interface MyComponent {
void setText(String text); // optional if with-operation is present
MyComponent withText(String text); // optional if setter is present
String getText();
...
}
MyComponent c = ...
c.withText("").withNumber(42).addTo(ref).withText("Hello World").withNumber(73).pushTo(ref);