"the same name as the class but with a '.js' extension and be present in " +
"the same classpath location.",
this.templateLocation));
}
TextTemplate tt = new PackageTextTemplate(
this.template.getScope(),
this.template.getName(),
"application/javascript",
settings().getEncoding()
);
Map<String,Object> map = new HashMap<String,Object>();
map.put("component", comp);
map.put("behavior", this);
this.readyScript = getCompressor().compress(
PropertyVariableInterpolator.interpolate(tt.getString(), map)
);
}