private TextBox textBox;
public StringAttributeEditor(AAttribute<String> attribute) {
super(attribute);
textBox = new TextBox();
textBox.textProperty().set(getAttribute().getValue());
textBox.widthProperty().bind(new AExpression<Integer>() {
{
bind(clientWidthProperty(), textBox.paddingProperty(), textBox.borderProperty());