}
}
if (optionName.equals("FRM_ADMIN_MATERIAL_UOM"))
{
final JInternalFrameMaterialUomAdmin u;
if (isLoaded(JInternalFrameMaterialUomAdmin.class))
setVisible(JInternalFrameMaterialUomAdmin.class);
else
{
u = new JInternalFrameMaterialUomAdmin(StrParam1, StrParam2);
u.setTitle(mod.getDescription());
displayForm(u, optionName);
}
}
if (optionName.equals("FRM_ADMIN_MATERIAL_UOM_EDIT"))
{
final JInternalFrameMaterialUomProperties u;
if (isLoaded(JInternalFrameMaterialUomProperties.class))
setVisible(JInternalFrameMaterialUomProperties.class);
else
{
u = new JInternalFrameMaterialUomProperties(StrParam1, StrParam2);
u.setTitle(mod.getDescription());
displayForm(u, optionName);
}
}
if (optionName.equals("FRM_ADMIN_MATERIAL_BATCH_EDIT"))
{
final JInternalFrameMaterialBatchProperties u;
if (isLoaded(JInternalFrameMaterialBatchProperties.class))
setVisible(JInternalFrameMaterialBatchProperties.class);
else
{
u = new JInternalFrameMaterialBatchProperties(StrParam1, StrParam2);
u.setTitle(mod.getDescription());
displayForm(u, optionName);
}
}
if (optionName.equals("FRM_ADMIN_MATERIAL_LOCATION_EDIT"))
{
final JInternalFrameMaterialLocationProperties u;
if (isLoaded(JInternalFrameMaterialLocationProperties.class))
setVisible(JInternalFrameMaterialLocationProperties.class);
else
{
u = new JInternalFrameMaterialLocationProperties(StrParam1, StrParam2);
u.setTitle(mod.getDescription());
displayForm(u, optionName);
}
}
if (optionName.equals("FRM_ADMIN_INTERFACE_EDIT"))
{
final JInternalFrameInterfaceProperties u;
if (isLoaded(JInternalFrameInterfaceProperties.class))
setVisible(JInternalFrameInterfaceProperties.class);
else
{
u = new JInternalFrameInterfaceProperties(StrParam1, StrParam2);
u.setTitle(mod.getDescription());
displayForm(u, optionName);
}
}
}