public void actionPerformed(ActionEvent e) {
   final String S_ProcName = "actionPerformed";
   Container cont = getParent();
   while ((cont != null) && (!(cont instanceof JInternalFrame))) {
     cont = cont.getParent();
   }
   if (cont != null) {
     JInternalFrame frame = (JInternalFrame) cont;
     if (frame instanceof ICFSecuritySwingSecGroupIncludeJPanelCommon) {
       ICFSecuritySwingSecGroupIncludeJPanelCommon jpanelCommon =
           (ICFSecuritySwingSecGroupIncludeJPanelCommon) frame;
       jpanelCommon.setPanelMode(CFJPanel.PanelMode.Unknown);
       ICFSecuritySecGroupIncludeEditObj editObj =
           (ICFSecuritySecGroupIncludeEditObj)
               jpanelCommon.getSwingFocusAsSecGroupInclude().getEdit();
       if (editObj != null) {
         editObj.endEdit();
       }
     } else {
       throw CFLib.getDefaultExceptionFactory()
           .newUnsupportedClassException(
               getClass(),
               S_ProcName,
               "frame",
               frame,
               "ICFSecuritySwingSecGroupIncludeJPanelCommon");
     }
     try {
       frame.setClosed(true);
     } catch (Exception x) {
     }
   }
 }
 public void setPanelMode(CFJPanel.PanelMode value) {
   final String S_ProcName = "setPanelMode";
   CFJPanel.PanelMode oldMode = getPanelMode();
   if (oldMode == value) {
     return;
   }
   if ((value != CFJPanel.PanelMode.Unknown)
       && (value != CFJPanel.PanelMode.View)
       && (value != CFJPanel.PanelMode.Delete)) {
     throw CFLib.getDefaultExceptionFactory()
         .newUsageException(
             getClass(),
             S_ProcName,
             "AskDeleteJPanels only support PanelMode Unknown, View or Delete");
   }
   super.setPanelMode(value);
   if (attrJPanel != null) {
     ((ICFSecuritySwingSecGroupIncludeJPanelCommon) attrJPanel).setPanelMode(value);
   }
 }
 public void setSwingFocusAsSecGroupInclude(ICFSecuritySecGroupIncludeObj value) {
   swingFocus = value;
   if (attrJPanel != null) {
     ((ICFSecuritySwingSecGroupIncludeJPanelCommon) attrJPanel).setSwingFocus(value);
   }
 }