return bridgeAnnotation != null && bridgeAnnotation.sources() != null && bridgeAnnotation.sources().length > 0;
}
@Override
public List<URI> getJavascriptFiles() {
STJSBridge bridgeAnnotation = ClassUtils.getAnnotation(clazz, STJSBridge.class);
if (!hasSourceAnnotation(bridgeAnnotation)) {
return Collections.emptyList();
}
List<URI> files = new ArrayList<URI>();
for (String src : bridgeAnnotation.sources()) {
try {
if (src.length() > 0) {
files.add(new URI(src));
}
}