2016-06-16 48 views

回答

1

對於你的項目,你可以使用ModuleRootManager每個模塊獲得的依賴關係:

// get the modules on which it depends 
ModuleRootManager.getInstance(module).getDependencies() 

// get the libraries on which it depends 
ModuleRootManager.getInstance(module).getModifiableModel().getModuleLibraryTable() 
相關問題