Datasets:
apcl
/

Modalities:
Text
Formats:
webdataset
Libraries:
Datasets
WebDataset
mcmillco's picture
init
e789b06
raw
history blame
411 Bytes
TDAT: public void setSharedVariables(Map variables) throws TemplateModelException {
if (variables != null) {
for (Iterator iter = variables.entrySet().iterator(); iter
.hasNext();) {
Map.Entry entry = (Map.Entry) iter.next();
String key = (String) entry.getKey();
Object value = entry.getValue();
super.setSharedVariable(key, value);
}
}
}
COM: <s> set shared variables </s>