1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Temprorary 'til we get the Sam Robb scheme on file type

Added method to return Assembly extensions.
This commit is contained in:
Alain Magloire 2004-04-15 00:25:28 +00:00
parent b3ac698a40
commit 0f6d907a5c
2 changed files with 14 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2004-04-14 Alain Magloire
This is temporary 'till we get the fancy ICType scheme
added a way to get the extension for assembly files.
* mode/org/eclipse/cdt/core/model/CoreModel.java
2004-04-14 Andrew Niefer
updated clients of Parse to have a default implementation for ISourceElementRequestor.acceptFriendDeclaration

View file

@ -156,6 +156,13 @@ public class CoreModel {
return manager.getSourceExtensions();
}
/**
* Returns the list of assembly file extensions.
*/
public String[] getAssemblyExtensions() {
return manager.getAssemblyExtensions();
}
/**
* Returns the list of headers and sources extensions
*/