Implement new dbus group interface

This commit is contained in:
AsamK 2021-10-07 21:18:14 +02:00
parent b5d4a5000b
commit 997b4f0c3f
15 changed files with 803 additions and 136 deletions

View file

@ -21,6 +21,12 @@ public class DbusProperty<T> {
this.setter = null;
}
public DbusProperty(final String name, final Consumer<T> setter) {
this.name = name;
this.getter = null;
this.setter = setter;
}
public String getName() {
return name;
}