1
2
3
4
5
6
7
8
9
10
11
12
13
14 from zope.interface import Interface
15
17 """
18 Object with ability to add devices to the database.
19 """
21 """
22 Attempt to load a single device into the database.
23 """
24
26 """
27 Attempt to load multiple devices into the database.
28 """
29
31 """
32 Object with ability to keep itself indexed in one or more catalogs.
33 """
38
39
41 """
42 Marker interface for the DMD, so it can be looked up as a global utility.
43 """
44
46 """
47 Adapter that does zendoc manipulation for an underlying object
48 """
50 """
51 retrieves zendoc text
52 """
53 pass
54
56 """
57 set zendoc text
58 """
59 pass
60
63