UI/BrowserModel.py

changeset 608
d8fea1e76975
parent 564
b3d966393ba9
child 788
5b1b59777460
equal deleted inserted replaced
607:d95d60ba16aa 608:d8fea1e76975
1110 """ 1110 """
1111 Public method to check, if this file is an eric project file. 1111 Public method to check, if this file is an eric project file.
1112 1112
1113 @return flag indicating an eric project file (boolean) 1113 @return flag indicating an eric project file (boolean)
1114 """ 1114 """
1115 return self.fileext in ['.e4p', '.e4pz'] 1115 return self.fileext in ['.e4p']
1116 1116
1117 def isMultiProjectFile(self): 1117 def isMultiProjectFile(self):
1118 """ 1118 """
1119 Public method to check, if this file is an eric multi project file. 1119 Public method to check, if this file is an eric multi project file.
1120 1120
1121 @return flag indicating an eric project file (boolean) 1121 @return flag indicating an eric project file (boolean)
1122 """ 1122 """
1123 return self.fileext in ['.e4m', '.e4mz'] 1123 return self.fileext in ['.e4m']
1124 1124
1125 def isIdlFile(self): 1125 def isIdlFile(self):
1126 """ 1126 """
1127 Public method to check, if this file is a CORBA IDL file. 1127 Public method to check, if this file is a CORBA IDL file.
1128 1128

eric ide

mercurial