diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-28 22:07:22 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-28 22:07:22 (GMT) |
commit | 7377bec6ae20e2a3b83f7084bc98af47e5bd3886 (patch) | |
tree | fef9adf10767b4f12a5918345a392cda9eb67f04 /Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py | |
parent | 03b9c91afff90cd8ac2e0b84f486d0f2ebf4e549 (diff) | |
download | cpython-7377bec6ae20e2a3b83f7084bc98af47e5bd3886.zip cpython-7377bec6ae20e2a3b83f7084bc98af47e5bd3886.tar.gz cpython-7377bec6ae20e2a3b83f7084bc98af47e5bd3886.tar.bz2 |
Regenerated (from resource files) with sorting version of gensuitemodule.
This is a first step towards regenerating the modules with newer, MacOSX,
versions of these programs, and using the programmatic interface to
get at the terminology in stead of poking in resource files.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py b/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py index 01d2bed..541abf6 100644 --- a/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py +++ b/Lib/plat-mac/lib-scriptpackages/Finder/Process_classes.py @@ -15,6 +15,30 @@ class Process_classes_Events: pass +class application_process(aetools.ComponentItem): + """application process - A process launched from an application file """ + want = 'pcap' +class _3c_Inheritance_3e_(aetools.NProperty): + """<Inheritance> - inherits some of its properties from the process class """ + which = 'c@#^' + want = 'prcs' +class application_file(aetools.NProperty): + """application file - the application file from which this process was launched """ + which = 'appf' + want = 'appf' + +application_processes = application_process + +class desk_accessory_process(aetools.ComponentItem): + """desk accessory process - A process launched from a desk accessory file """ + want = 'pcda' +class desk_accessory_file(aetools.NProperty): + """desk accessory file - the desk accessory file from which this process was launched """ + which = 'dafi' + want = 'obj ' + +desk_accessory_processes = desk_accessory_process + class process(aetools.ComponentItem): """process - A process running on this computer """ want = 'prcs' @@ -64,30 +88,20 @@ class partition_space_used(aetools.NProperty): want = 'long' processes = process - -class application_process(aetools.ComponentItem): - """application process - A process launched from an application file """ - want = 'pcap' -class _3c_Inheritance_3e_(aetools.NProperty): - """<Inheritance> - inherits some of its properties from the process class """ - which = 'c@#^' - want = 'prcs' -class application_file(aetools.NProperty): - """application file - the application file from which this process was launched """ - which = 'appf' - want = 'appf' - -application_processes = application_process - -class desk_accessory_process(aetools.ComponentItem): - """desk accessory process - A process launched from a desk accessory file """ - want = 'pcda' -class desk_accessory_file(aetools.NProperty): - """desk accessory file - the desk accessory file from which this process was launched """ - which = 'dafi' - want = 'obj ' - -desk_accessory_processes = desk_accessory_process +application_process._superclassnames = ['process'] +application_process._privpropdict = { + '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, + 'application_file' : application_file, +} +application_process._privelemdict = { +} +desk_accessory_process._superclassnames = ['process'] +desk_accessory_process._privpropdict = { + '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, + 'desk_accessory_file' : desk_accessory_file, +} +desk_accessory_process._privelemdict = { +} process._superclassnames = [] process._privpropdict = { 'name' : name, @@ -104,20 +118,6 @@ process._privpropdict = { } process._privelemdict = { } -application_process._superclassnames = ['process'] -application_process._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, - 'application_file' : application_file, -} -application_process._privelemdict = { -} -desk_accessory_process._superclassnames = ['process'] -desk_accessory_process._privpropdict = { - '_3c_Inheritance_3e_' : _3c_Inheritance_3e_, - 'desk_accessory_file' : desk_accessory_file, -} -desk_accessory_process._privelemdict = { -} # # Indices of types declared in this module |