url = new URL(contentValue);
} catch (MalformedURLException e) {
if (!contentValue.startsWith("/")) {
contentValue = "/" + contentValue;
}
ILoadingContext loadingContext = context.getLoadingContext();
URL resource = loadingContext.getResource(contentValue);
if (resource == null) {
try {
resource = new URL(context.getResourcePath() + contentValue);
return resource.toString();
} catch (MalformedURLException e1) {