Community
Participate
Working Groups
Build ID: I20090430-2300 Currently in the property binding page, we need to save and read out the PropertyBinding value as Expression to the DesignElementHandle. So we expect Model to add a new method to save a pair of name(String)/expression(Expression) to the DesignElementHandle instance, which is corresponding to the existing method setPropertyBinding(String propName, String value). A method to obtain the Expression by a given property name string is also needed.
Please add two methods: public void setPropertyBinding( String propName, Expression value ) public Expression getPropertyBindingExpression( String propName) in the DesignElementHandle and deprecates the current methods.
two methods added: public void setPropertyBinding( String propName, Expression value ) public Expression getPropertyBindingExpression( String propName) two methods deprecated: public void setPropertyBinding( String propName, String value ) public String getPropertyBinding( String propName) Add new test case for new API.
verified on May 19.