Let's please rename Block to Receiver before it's too late
Remi Forax
forax at univ-mlv.fr
Sat Jan 19 08:11:54 PST 2013
On 01/19/2013 03:57 PM, Doug Lea wrote:
> On 01/19/13 09:43, Remi Forax wrote:
>
>>> interface Action<T> { void accept(T t); }
>>
>> Writing event broadcaster (listener support in swing slang) is a
>> place where you
>> want to mix streams and swing actions.
>> listeners.stream().filter(l -> l instanceof XXXListener).forEach(l ->
>> l.fireEvent(...));
>
> People can do this without ever importing or using j.u.f.Action.
> The only people affected are those writing new methods with
> j.u.f.Action vs javax.swing.Action arguments. Still concerned?
the issues that stay are when users want to understand error message
from the compiler
(I don"t know if the compiler will print the j.u.f.Action when full
diagnostic message will be turn of ?)
And users that want to use a lambda as an action (AbstractAction is
abstract so you need to use delegation).
jx.s.Action createAction(j.u.f.Action<ActionEvent> action) {
return new AbstractAction() {
public void accept(ActionEvent event) {
return action.accept(event);
}
};
}
but this one can be solved by adding this method in swing.
>
> -Doug
>
>
Rémi
More information about the lambda-libs-spec-experts
mailing list