Examples of GfrPnlGrpAbs


Examples of org.geoforge.guillc.panel.GfrPnlGrpAbs

   @Override
   protected void _updateModifiedFieldStatus(GfrEvtPanelChange e)
   {
      Object objSource = e.getSource();

      GfrPnlGrpAbs pnl = (GfrPnlGrpAbs) objSource;

      if (!pnl.isMandatory())
      {
         return;
      }

      if (pnl instanceof IGfrHandlerSelectedIndex)
      {


         int intVal = ((IGfrHandlerSelectedIndex) pnl).getSelectedIndex();

         boolean blnVal = true;

         if (intVal == 0)
            blnVal = false;

         pnl.setValueIsOk(blnVal);
      }
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.