/** * Returns all the classes in this project, which are sorted in dictionary order. * * @return the collection of the classes */ public List<JavaClass> getJavaClassesInDictionaryOrder() { return sortClasses(JavaClass.getAllJavaClassesInCache()); }
/** * Returns all the classes in this project. * * @return the collection of the classes */ public Set<JavaClass> getJavaClasses() { return JavaClass.getAllJavaClassesInCache(); }