How to list all projects along with the creation dates?
![]()
How to list all project areas in IBM Rational Team Concert (RTC) or (Rational Quality Manager) along with the creation dates using the Plain Java Client?
|
Accepted answer
![]() // get all project areas IProcessItemService processItemService = (IProcessItemService)teamRepository.getClientLibrary(IProcessItemService.class); List<?> list = processItemService.findAllProjectAreas(IProcessClientService.ALL_PROPERTIES, null); Ralph Schoon selected this answer as the correct answer
|