Add relation-dump option to at_spi2_tool
[platform/upstream/at-spi2-core.git] / idl / document.didl
1
2 /*
3   Indicates the start of a document.
4
5   Children are part of the document content.
6 */
7 interface org.freestandards.atspi.Document {
8
9         /* Gets the locale associated with the documents content. */
10         method GetLocale reply {
11                 string locale;
12         }
13
14         /* Gets the value of a single attribute. */
15         method GetAttributeValue {
16                 string key;
17         } reply {
18                 string value;
19         }
20
21         /* Gets all attributes for the document as a whole. These are constant for all elements within the document.*/
22         method GetAttributes reply {
23                 Attributes attributes;
24         }
25 }