public JPanel getTabViewComponentsMinorVersionListJPanel() {
   if (tabViewComponentsMinorVersionListJPanel == null) {
     Collection<ICFInternetMinorVersionObj> dataCollection;
     ICFAccMajorVersionObj focus = (ICFAccMajorVersionObj) getSwingFocusAsMajorVersion();
     if (focus != null) {
       dataCollection = focus.getOptionalComponentsMinorVersion(swingIsInitializing);
     } else {
       dataCollection = null;
     }
     ICFInternetMajorVersionObj swingContainer;
     if ((focus != null) && (focus instanceof ICFInternetMajorVersionObj)) {
       swingContainer = (ICFInternetMajorVersionObj) focus;
     } else {
       swingContainer = null;
     }
     tabViewComponentsMinorVersionListJPanel =
         swingSchema
             .getMinorVersionFactory()
             .newListJPanel(
                 null,
                 swingContainer,
                 dataCollection,
                 new RefreshComponentsMinorVersionList(),
                 false);
   }
   return (tabViewComponentsMinorVersionListJPanel);
 }