You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ValueSource may delegate to another ValueSource by returning an expression itself in its getValue(...) method. However that requires that the returned value is enclosed in the delimiters.
However, the delimiters are configurable, so somehow the ValueSource implementation needs to know which ones are detected by the calling Interpolator.
The text was updated successfully, but these errors were encountered:
The easiest fix is to add another method Object getValue(String expression, String delimiterStart, String delimiterEnd) which calls by default just getValue(expression). Each interpolator needs to call each ValueSource with valid delimiter arguments.
ValueSource
may delegate to anotherValueSource
by returning an expression itself in itsgetValue(...)
method. However that requires that the returned value is enclosed in the delimiters.However, the delimiters are configurable, so somehow the
ValueSource
implementation needs to know which ones are detected by the callingInterpolator
.The text was updated successfully, but these errors were encountered: