add toString to simplify debug

This commit is contained in:
Vladimir Krivosheev
2014-11-06 17:11:07 +01:00
parent 05688e0d4d
commit 0b30ac5a87
@@ -86,4 +86,8 @@ public class AttributeBinding extends BasePrimitiveBinding {
throw new XmlSerializationException("Can't use attribute binding for non-text content: " + myAccessor);
}
}
public String toString() {
return "AttributeBinding[" + myName + ", binding=" + myBinding + "]";
}
}