458459460461462463464465
public boolean hasMoreElements() { try { return it.hasNext(); } catch (TemplateModelException tme) { throw new UndeclaredThrowableException(tme); } }
466467468469470471472473
public Object nextElement() { try { return ((TemplateScalarModel) it.next()).getAsString(); } catch (TemplateModelException tme) { throw new UndeclaredThrowableException(tme); } }
15401541154215431544154515461547154815491550
if(ENUMS_MODEL_CTOR != null) { try { return (ClassBasedModelFactory)ENUMS_MODEL_CTOR.newInstance( new Object[] { wrapper }); } catch(Exception e) { throw new UndeclaredThrowableException(e); } } else { return null; } }
16441645164616471648164916501651165216531654
6667686970717273
server.start(); } catch(RemoteException e) { e.printStackTrace(); throw new UndeclaredThrowableException(e); } }
545556575859606162
{ password = SecurityUtilities.getSystemProperty("freemarker.debug.password", "").getBytes("UTF-8"); } catch (UnsupportedEncodingException e) { throw new UndeclaredThrowableException(e); } this.debuggerStub = debuggerStub; }
439440441442443444445446
447448449450451452453454
4950515253545556
public boolean isEmpty() { try { return model.isEmpty(); } catch(TemplateModelException e) { throw new UndeclaredThrowableException(e); } }
5859606162636465
public Object get(Object key) { try { return wrapper.unwrap(model.get(String.valueOf(key))); } catch(TemplateModelException e) { throw new UndeclaredThrowableException(e); } }