Schnittstelle Properties

Alle Superschnittstellen:
DBusInterface

public interface Properties extends DBusInterface
A standard properties interface.
  • Verschachtelte Klassen - Übersicht

    Verschachtelte Klassen
    Modifizierer und Typ
    Schnittstelle
    Beschreibung
    static class 
    Signal generated when a property changes.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    <A> A
    Get(String _interfaceName, String _propertyName)
    Get the value for the given property.
    GetAll(String _interfaceName)
    Get all properties and values.
    <A> void
    Set(String _interfaceName, String _propertyName, A _value)
    Set the value for the given property.

    Von Schnittstelle geerbte Methoden org.freedesktop.dbus.interfaces.DBusInterface

    getObjectPath, isRemote
  • Methodendetails

    • Get

      <A> A Get(String _interfaceName, String _propertyName)
      Get the value for the given property.
      Typparameter:
      A - whatever
      Parameter:
      _interfaceName - The interface this property is associated with.
      _propertyName - The name of the property.
      Gibt zurück:
      The value of the property (may be any valid DBus type).
    • Set

      <A> void Set(String _interfaceName, String _propertyName, A _value)
      Set the value for the given property.
      Typparameter:
      A - whatever
      Parameter:
      _interfaceName - The interface this property is associated with.
      _propertyName - The name of the property.
      _value - The new value of the property (may be any valid DBus type).
    • GetAll

      Map<String,Variant<?>> GetAll(String _interfaceName)
      Get all properties and values.
      Parameter:
      _interfaceName - The interface the properties is associated with.
      Gibt zurück:
      The properties mapped to their values.