1718192021222324
try { Component cfc = HibernateCaster.toComponent(entity); return HibernateCaster.getEntityName(cfc); } catch (PageException pe) { //print.printST(e); throw new HibernatePageException(pe); } }
2526272829303132
public ComponentAccess getCFC() { try { return ComponentUtil.toComponentAccess(CommonUtil.toComponent(getImplementation())); } catch (PageException pe) { throw new HibernatePageException(pe); } }
5758596061626364
Component c = engine.create(pc, session, entityName, true); CommonUtil.setEntity(c,true); return c;//new CFCProxy(c); } catch (PageException pe) { throw new HibernatePageException(pe); } }
5556575859606162
Object rtn = cfc.getComponentScope().get(key,null); return HibernateCaster.toSQL(type, rtn,null); } catch (PageException pe) { throw new HibernatePageException(pe); } }
5051525354555657
try { Component cfc = CommonUtil.toComponent(trg); cfc.getComponentScope().set(key,value); } catch (PageException pe) { throw new HibernatePageException(pe); } }