* @throws JavaModelException
* thrown when a problem with the underlying Java model occures
*/
public static IClassFiles[] getClassFiles(IJavaProject project)
throws JavaModelException {
final ClassFilesStore store = new ClassFilesStore();
store.add(project);
return store.getClassFiles();
}