dbus-java icon indicating copy to clipboard operation
dbus-java copied to clipboard

Improved version of java DBus library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/)

Results 11 dbus-java issues
Sort by recently updated
recently updated
newest added

Given the following dbus interface and implementation: ```java @DBusInterfaceName("dev.tutetaki.FruitManager") public interface FruitManager extends DBusInterface { List ListFruits(); @DBusBoundProperty(type = PropertyFruitType.class) List getFruits(); public static interface PropertyFruitType extends TypeRef { }...