diff options
Diffstat (limited to 'introspection/nm-device-bridge.xml')
| -rw-r--r-- | introspection/nm-device-bridge.xml | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/introspection/nm-device-bridge.xml b/introspection/nm-device-bridge.xml index 6cf99a10..c2e8ffd3 100644 --- a/introspection/nm-device-bridge.xml +++ b/introspection/nm-device-bridge.xml @@ -1,34 +1,36 @@ -<?xml version="1.0" encoding="UTF-8" ?> - -<node name="/" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0"> +<?xml version="1.0" encoding="UTF-8"?> +<node name="/"> <interface name="org.freedesktop.NetworkManager.Device.Bridge"> - <property name="HwAddress" type="s" access="read"> - <annotation name="org.gtk.GDBus.DocString" value=" + <!-- + HwAddress: + Hardware address of the device. - " /> - </property> + --> + <property name="HwAddress" type="s" access="read"/> + + <!-- + Carrier: - <property name="Carrier" type="b" access="read"> - <annotation name="org.gtk.GDBus.DocString" value=" - Indicates whether the physical carrier is found (e.g. whether a cable is plugged in or not). - " /> - </property> + Indicates whether the physical carrier is found (e.g. whether a cable is + plugged in or not). + --> + <property name="Carrier" type="b" access="read"/> - <property name="Slaves" type="ao" access="read"> - <annotation name="org.gtk.GDBus.DocString" value=" - Array of object paths representing devices which are currently - slaved to this device. - " /> - </property> + <!-- + Slaves: + Array of object paths representing devices which are currently slaved to + this device. + --> + <property name="Slaves" type="ao" access="read"/> + + <!-- + PropertiesChanged: + @properties: A dictionary mapping property names to variant boxed values + --> <signal name="PropertiesChanged"> - <arg name="properties" type="a{sv}" tp:type="String_Variant_Map"> - <annotation name="org.gtk.GDBus.DocString" value=" - A dictionary mapping property names to variant boxed values - " /> - </arg> + <arg name="properties" type="a{sv}"/> </signal> - </interface> </node> |