mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
14 lines
287 B
Java
14 lines
287 B
Java
|
|
import java.util.Collection;
|
|
|
|
class Test {
|
|
public void entitySetChanged(EntitySetEvent<? extends Number> event) {
|
|
event.getUpdatedEntities().forEach(entity -> {
|
|
entity.intValue();
|
|
});
|
|
}
|
|
}
|
|
|
|
interface EntitySetEvent<V> {
|
|
Collection<? extends V> getUpdatedEntities();
|
|
} |