/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.api.gui; public interface ModifyableGuiBuilderConfiguration { /** * Add a key/value pair into Velocity context.
* IMPORTANT: external HTML escapetion is required, because it is NOT done internally * * @param key velocity context key * @param value of this key */ void putCustomParameterWithOutEscaption(String key, Object value); /** * Add a key/value pair into Velocity context.
* All parameters get escaped internally * * @param key velocity context key * @param value of this key */ void putCustomParameter(String key, String value); }