160 """ |
160 """ |
161 Private method to open a file in the application server. |
161 Private method to open a file in the application server. |
162 |
162 |
163 @param fname name of file to be opened (string) |
163 @param fname name of file to be opened (string) |
164 """ |
164 """ |
165 self.sendCommand(SAOpenFile, [Utilities.normabspath(fname)]) |
165 self.sendCommand(SAOpenFile, [os.path.abspath(fname)]) |
166 |
166 |
167 def __openProject(self, pfname): |
167 def __openProject(self, pfname): |
168 """ |
168 """ |
169 Private method to open a project in the application server. |
169 Private method to open a project in the application server. |
170 |
170 |
171 @param pfname name of the projectfile to be opened (string) |
171 @param pfname name of the projectfile to be opened (string) |
172 """ |
172 """ |
173 self.sendCommand(SAOpenProject, [Utilities.normabspath(pfname)]) |
173 self.sendCommand(SAOpenProject, [os.path.abspath(pfname)]) |
174 |
174 |
175 def __openMultiProject(self, pfname): |
175 def __openMultiProject(self, pfname): |
176 """ |
176 """ |
177 Private method to open a project in the application server. |
177 Private method to open a project in the application server. |
178 |
178 |
179 @param pfname name of the projectfile to be opened (string) |
179 @param pfname name of the projectfile to be opened (string) |
180 """ |
180 """ |
181 self.sendCommand(SAOpenMultiProject, [Utilities.normabspath(pfname)]) |
181 self.sendCommand(SAOpenMultiProject, [os.path.abspath(pfname)]) |
182 |
182 |
183 def __sendArguments(self, argsStr): |
183 def __sendArguments(self, argsStr): |
184 """ |
184 """ |
185 Private method to set the command arguments in the application server. |
185 Private method to set the command arguments in the application server. |
186 |
186 |