RefactoringRope/FileSystemCommands.py

branch
server_client_variant
changeset 203
c38750e1bafd
parent 195
5d614a567be3
child 245
75a35a927952
equal deleted inserted replaced
202:a111134b5dc7 203:c38750e1bafd
86 """ 86 """
87 Public method called by rope to write data to a file. 87 Public method called by rope to write data to a file.
88 88
89 @param path filename of file to write to 89 @param path filename of file to write to
90 @type str 90 @type str
91 @param data dat to be written 91 @param data data to be written
92 """ 92 """
93 self.__normal_actions.write(path, data) 93 self.__normal_actions.write(path, data)
94 94
95 95
96 class E5FileSystemCommands(object): 96 class E5FileSystemCommands(object):
99 """ 99 """
100 def __init__(self, project): 100 def __init__(self, project):
101 """ 101 """
102 Constructor 102 Constructor
103 103
104 @param project reference to the eric project object (Project.Project) 104 @param project reference to the eric project object
105 @type Project.Project
105 """ 106 """
106 self.__project = project 107 self.__project = project
107 108
108 def processFileSystemCommand(self, params): 109 def processFileSystemCommand(self, params):
109 """ 110 """

eric ide

mercurial