ยปCore Development>Code coverage>Lib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py

Python code coverage for Lib/plat-mac/lib-scriptpackages/SystemEvents/Login_Items_Suite.py

#countcontent
1n/a"""Suite Login Items Suite: Terms and Events for controlling the Login Items application
2n/aLevel 1, version 1
3n/a
4n/aGenerated from /System/Library/CoreServices/System Events.app
5n/aAETE/AEUT resource version 1/0, language 0, script 0
6n/a"""
7n/a
8n/aimport aetools
9n/aimport MacOS
10n/a
11n/a_code = 'logi'
12n/a
13n/aclass Login_Items_Suite_Events:
14n/a
15n/a pass
16n/a
17n/a
18n/aclass login_item(aetools.ComponentItem):
19n/a """login item - an item to be launched or opened at login """
20n/a want = 'logi'
21n/aclass _Prop__3c_Inheritance_3e_(aetools.NProperty):
22n/a """<Inheritance> - All of the properties of the superclass. """
23n/a which = 'c@#^'
24n/a want = 'cobj'
25n/aclass _Prop_hidden(aetools.NProperty):
26n/a """hidden - Is the Login Item hidden when launched? """
27n/a which = 'hidn'
28n/a want = 'bool'
29n/aclass _Prop_kind(aetools.NProperty):
30n/a """kind - the file type of the Login Item """
31n/a which = 'kind'
32n/a want = 'utxt'
33n/aclass _Prop_name(aetools.NProperty):
34n/a """name - the name of the Login Item """
35n/a which = 'pnam'
36n/a want = 'utxt'
37n/aclass _Prop_path(aetools.NProperty):
38n/a """path - the file system path to the Login Item """
39n/a which = 'ppth'
40n/a want = 'utxt'
41n/a
42n/alogin_items = login_item
43n/aimport Standard_Suite
44n/alogin_item._superclassnames = ['item']
45n/alogin_item._privpropdict = {
46n/a '_3c_Inheritance_3e_' : _Prop__3c_Inheritance_3e_,
47n/a 'hidden' : _Prop_hidden,
48n/a 'kind' : _Prop_kind,
49n/a 'name' : _Prop_name,
50n/a 'path' : _Prop_path,
51n/a}
52n/alogin_item._privelemdict = {
53n/a}
54n/a
55n/a#
56n/a# Indices of types declared in this module
57n/a#
58n/a_classdeclarations = {
59n/a 'logi' : login_item,
60n/a}
61n/a
62n/a_propdeclarations = {
63n/a 'c@#^' : _Prop__3c_Inheritance_3e_,
64n/a 'hidn' : _Prop_hidden,
65n/a 'kind' : _Prop_kind,
66n/a 'pnam' : _Prop_name,
67n/a 'ppth' : _Prop_path,
68n/a}
69n/a
70n/a_compdeclarations = {
71n/a}
72n/a
73n/a_enumdeclarations = {
74n/a}