use of org.autorefactor.refactoring.TypeNameDecider in project AutoRefactor by JnRouvignac.
the class CFGBuilder method newException.
private ITypeBinding newException(Expression node, String fullyQualifiedName) {
ITypeBinding typeBinding = typeBindingsCache.get(fullyQualifiedName);
if (typeBinding == null) {
typeBinding = new TypeNameDecider(node).resolveTypeBinding(fullyQualifiedName);
typeBindingsCache.put(typeBinding.getQualifiedName(), typeBinding);
}
return typeBinding;
}
Aggregations