示例#1
0
 /**
  * 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());
 }
示例#2
0
 /**
  * Returns all the classes in this project.
  *
  * @return the collection of the classes
  */
 public Set<JavaClass> getJavaClasses() {
   return JavaClass.getAllJavaClassesInCache();
 }