]>
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 | import Parameters as wx | |
17 | ||
18 | try: | |
19 | True | |
20 | except NameError: | |
21 | True = 1==1 | |
22 | False = 1==0 | |
23 | ||
24 | ||
25 | class Validator(EvtHandler): | |
26 | """""" | |
27 | ||
28 | def __init__(self): | |
29 | """""" | |
30 | pass | |
31 | ||
32 | def Clone(self): | |
33 | """""" | |
34 | pass | |
35 | ||
36 | def GetWindow(self): | |
37 | """""" | |
38 | pass | |
39 | ||
40 | def SetWindow(self, window): | |
41 | """""" | |
42 | pass | |
43 | ||
44 | ||
45 | class PyValidator(Validator): | |
46 | """""" | |
47 | ||
48 | def __init__(self): | |
49 | """""" | |
50 | pass | |
51 | ||
52 | def _setCallbackInfo(self, _class, incref=True): | |
53 | """""" | |
54 | pass | |
55 | ||
56 |