////////////////////////////////////////////////////////////////////////////
/**
* Set new value for {@link Property} as edit operation.
*/
private void setSizeProperty(final Property property, final Object value) throws Exception {
ExecutionUtils.run(m_lastParseInfo, new RunnableEx() {
public void run() throws Exception {
property.setValue(value);
}
});
}