20 ########################################################################### |
20 ########################################################################### |
21 |
21 |
22 SAFile = "eric5" |
22 SAFile = "eric5" |
23 |
23 |
24 # define the protocol tokens |
24 # define the protocol tokens |
25 SAOpenFile = '>OpenFile<' |
25 SAOpenFile = '>OpenFile<' |
26 SAOpenProject = '>OpenProject<' |
26 SAOpenProject = '>OpenProject<' |
27 SAArguments = '>Arguments<' |
27 SAArguments = '>Arguments<' |
|
28 |
28 |
29 |
29 class E5SingleApplicationServer(SingleApplicationServer): |
30 class E5SingleApplicationServer(SingleApplicationServer): |
30 """ |
31 """ |
31 Class implementing the single application server embedded within the IDE. |
32 Class implementing the single application server embedded within the IDE. |
32 """ |
33 """ |
76 Private method used to handle the "Arguments" command. |
77 Private method used to handle the "Arguments" command. |
77 |
78 |
78 @param argsStr space delimited list of command args(string) |
79 @param argsStr space delimited list of command args(string) |
79 """ |
80 """ |
80 e5App().getObject("DebugUI").setArgvHistory(argsStr) |
81 e5App().getObject("DebugUI").setArgvHistory(argsStr) |
|
82 |
81 |
83 |
82 class E5SingleApplicationClient(SingleApplicationClient): |
84 class E5SingleApplicationClient(SingleApplicationClient): |
83 """ |
85 """ |
84 Class implementing the single application client of the IDE. |
86 Class implementing the single application client of the IDE. |
85 """ |
87 """ |