Skip to content

Releases: OxideWaveLength/Java-BetterReflection

Added some utilities

05 May 07:30
7910ed6

Choose a tag to compare

  • #getDirectoriesFromPackageName(String packageName) - returns a file array of directories that match the package name
  • #getClasses(String packageName) - returns an array of BetterReflectionClasses
  • #findClasses(File directory, String packageName) - recursively return the classes in the directory and subdirectories
  • #(String packageName, String start) - searches for classes starting with the string start and returns the first one as a BetterReflectionClass

None of the above methods adds the classes to the cache, you should manually add them to the BetterReflection's list

Bug-fix and new feature

24 Feb 08:44
15a707b

Choose a tag to compare

  • Fixed a bug that made getMethod unreliable (cd3adb3)
  • Added varargs to BetterReflectionClass#invokeMethod() to invoke methods that have parameters (15a707b)

v0.1

20 Feb 15:44
ad941d3

Choose a tag to compare

This is the first release