+ relativePath + "'");
}
private String getImageUrl(Method method) {
String fileName;
Resource resource = method.getAnnotation(Resource.class);
if (resource != null) {
fileName = resource.value();
} else {
fileName = computeFileSimpleName(method);
}
return GWT.getModuleBaseURL() + fileName;