@Override
public Object getProperty(String property) {
try {
if (property.equals("actionBridge")) {
// special object used to resolving actions
GTJavaBase template = (GTJavaBase)super.getProperty("java_class");
return new ActionBridge(template.templateLocation.relativePath);
}
return super.getProperty(property);
} catch (MissingPropertyException mpe) {
return null;