* Display the S-Components of this net
*
* @return node containing information about sComponents
*/
protected static DefaultMutableTreeNode getSComponentsInfo(IQualanalysisService qualanService) {
return new NodeGroupListNetInfo(Messages.getString(prefix + "NumSComponents") + ": "
+ qualanService.getSComponents().size(), qualanService.getSComponents().iterator()) {
@Override
public String getGroupDisplayString(int nIndex, Collection<?> group) {
return Messages.getString(prefix + "SComponent") + ":" + group.size();
}