]>
Commit | Line | Data |
---|---|---|
1e4a197e RD |
1 | """Decorator classes for documentation and shell scripting. |
2 | """ | |
3 | ||
4 | __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>" | |
5 | __cvsid__ = "$Id$" | |
6 | __revision__ = "$Revision$"[11:-2] | |
7 | ||
8 | ||
9 | # These are not the real wxPython classes. These are Python versions | |
10 | # for documentation purposes. They are also used to apply docstrings | |
11 | # to the real wxPython classes, which are SWIG-generated wrappers for | |
12 | # C-language classes. | |
13 | ||
14 | ||
15 | from Base import EvtHandler | |
16 | ||
17 | ||
18 | class Process(EvtHandler): | |
19 | """""" | |
20 | ||
21 | def CloseOutput(self): | |
22 | """""" | |
23 | pass | |
24 | ||
25 | def Destroy(self): | |
26 | """""" | |
27 | pass | |
28 | ||
29 | def Detach(self): | |
30 | """""" | |
31 | pass | |
32 | ||
33 | def GetErrorStream(self): | |
34 | """""" | |
35 | pass | |
36 | ||
37 | def GetInputStream(self): | |
38 | """""" | |
39 | pass | |
40 | ||
41 | def GetOutputStream(self): | |
42 | """""" | |
43 | pass | |
44 | ||
45 | def IsErrorAvailable(self): | |
46 | """""" | |
47 | pass | |
48 | ||
49 | def IsInputAvailable(self): | |
50 | """""" | |
51 | pass | |
52 | ||
53 | def IsInputOpened(self): | |
54 | """""" | |
55 | pass | |
56 | ||
57 | def IsRedirected(self): | |
58 | """""" | |
59 | pass | |
60 | ||
61 | def Redirect(self): | |
62 | """""" | |
63 | pass | |
64 | ||
65 | def __init__(self): | |
66 | """""" | |
67 | pass | |
68 | ||
69 | def _setCallbackInfo(self): | |
70 | """""" | |
71 | pass | |
72 | ||
73 | def base_OnTerminate(self): | |
74 | """""" | |
75 | pass | |
76 | ||
77 |