0

I want to retrieve all classes from model packge in android project but unable to get please share any suggetion or solution .

thanks.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
Dnyanesh
  • 31
  • 6
  • 1
    What do you mean by "retrieve all classes from model packge"? – CommonsWare Apr 21 '14 at 11:01
  • using packge name i want to retrieve all classes which are included in packge programmatically – Dnyanesh Apr 21 '14 at 14:54
  • 1
    possible duplicate of [Can you find all classes in a package using reflection?](http://stackoverflow.com/questions/520328/can-you-find-all-classes-in-a-package-using-reflection) – CommonsWare Apr 21 '14 at 14:57

1 Answers1

0

Hope this will help-

Use import <package_name>.*. * will allow to access all classes of that package

Android dev
  • 273
  • 2
  • 5
  • 23