Advertisement
aschuma

ATL :: JIRA :: Dyn Module Lookup

Aug 24th, 2015
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. List answer = ...
  2.  
  3. List modules = this.pluginAccessor.getPlugin("<plugin-key>").getModuleDescriptorsByModuleClass(<Component-Interface>);
  4.  
  5. for (ModuleDescriptor moduleDescriptor : modules ) {
  6.    answer.add(moduleDescriptor.getModule());
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement