1230 """ |
1230 """ |
1231 Public method to check, if this file is an eric multi project file. |
1231 Public method to check, if this file is an eric multi project file. |
1232 |
1232 |
1233 @return flag indicating an eric project file (boolean) |
1233 @return flag indicating an eric project file (boolean) |
1234 """ |
1234 """ |
1235 return self.fileext in ['.e4m'] |
1235 return self.fileext in ['.e4m', '.e5m'] |
1236 |
1236 |
1237 def isIdlFile(self): |
1237 def isIdlFile(self): |
1238 """ |
1238 """ |
1239 Public method to check, if this file is a CORBA IDL file. |
1239 Public method to check, if this file is a CORBA IDL file. |
1240 |
1240 |