frameCache.put(frameSetId,frameSetMap);
}
Component comp = frameSetMap.get(frameFactory);
if(comp==null){
try {
Frame frame=frameConfigMap.get(frameFactory.toString());
comp = (Component)getInstance(frame.getFrameClass(),objs);
comp.setName(frameSetId);
frameSetMap.put(frameFactory, comp);
} catch (Exception ex) {
new SwingObjectsException("error.severe.SF001",ErrorSeverity.SEVERE,"Exception while getting frame "+frameFactory,(Exception)ex.getCause(),FrameFactory.class);
logger.error("Unable to obtain frame.. so exiting!",ex);