1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 03:05:39 +02:00

new method getFormat().

This commit is contained in:
Alain Magloire 2002-11-25 05:53:32 +00:00
parent 47c90fdd03
commit 95287f294f

View file

@ -32,4 +32,11 @@ public class ElfParser implements IBinaryParser {
return new ElfBinaryArchive(file); return new ElfBinaryArchive(file);
} }
/**
* @see org.eclipse.cdt.core.model.IBinaryParser#getFormat()
*/
public String getFormat() {
return "ELF";
}
} }