Recent Posts

Passing objects / classes with Guice

less than 1 minute read

@BindConstant will only let you to bind primitive data types such as int, char or String. If you want to pass a custom object, instance or class you need to ...

Data binding is not updating property

less than 1 minute read

You used DataBinding to bind a property to an object but even though state has been changed, your object is not updated. In my case I have a CheckBox and I b...

Wait for BackgroundWorker process

less than 1 minute read

Let’s say your class is BackgroundWorker and you have a child class who is another BackgroundWorker. If a cancellation is requested from user, you want to ca...