@param optr_dbg The Outputter to use for debugging while parsing the file text. May not be null. This value is passed directly to the TParseConfig constructor.
@param template_filter The TFilter to validate the integrity of the retrieved Template. This value is passed directly to the Template constructor.
@exception AssertException If an AssertException or TemplateFormatException are thrown, for any reason, by either the TParseConfig or Template constructors.
**/
public GetTemplateFrom(String s_templateName, ForLineRetrieval flr_srcTxt, GapConfig gap_config, Outputter optr_dbg, TFilter template_filter) {
TParseConfig tpc = null;
try {
tpc = new TParseConfig(gap_config, optr_dbg);
} catch(AssertException ax) {
throwAX("getTemplateFrom. Attempting to [new TParseConfig(gap_config, optr_dbg)]: " + ax.toString());
}
t = createTemplate(s_templateName, flr_srcTxt, tpc, template_filter);