io.snapcraft.Settings.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <node>
  2. <interface name='io.snapcraft.Settings'>
  3. <method name='Check'>
  4. <arg type='s' name='setting' direction='in'/>
  5. <arg type='s' name='check' direction='in'/>
  6. <arg type='s' name='result' direction='out'/>
  7. </method>
  8. <method name='CheckSub'>
  9. <arg type='s' name='setting' direction='in'/>
  10. <arg type='s' name='subproperty' direction='in'/>
  11. <arg type='s' name='check' direction='in'/>
  12. <arg type='s' name='result' direction='out'/>
  13. </method>
  14. <method name='Get'>
  15. <arg type='s' name='setting' direction='in'/>
  16. <arg type='s' name='result' direction='out'/>
  17. </method>
  18. <method name='GetSub'>
  19. <arg type='s' name='setting' direction='in'/>
  20. <arg type='s' name='subproperty' direction='in'/>
  21. <arg type='s' name='result' direction='out'/>
  22. </method>
  23. <method name='Set'>
  24. <arg type='s' name='setting' direction='in'/>
  25. <arg type='s' name='value' direction='in'/>
  26. </method>
  27. <method name='SetSub'>
  28. <arg type='s' name='setting' direction='in'/>
  29. <arg type='s' name='subproperty' direction='in'/>
  30. <arg type='s' name='value' direction='in'/>
  31. </method>
  32. </interface>
  33. </node>