用Java计算传出耦合

时间:2014-02-10 04:43:10

标签: java object eclipse-jdt coupling cbo

我需要从源文件计算Java程序的传出耦合(对象之间的耦合)。

我已经在Eclipse中使用jdt提取抽象语法树,但我不确定是否可以直接从另一个类中提取类依赖项。

我无法使用任何公制插件。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您可以使用ASTVisitor检查AST中的相关节点。然后,您可以使用resolveBinding()resolveTypeBinding()来提取依赖项。 (为此,您需要在解析时打开“resolveBindings”。)

我没有测试过这个,但是这个例子应该给你一个想法:

public static IType[] findDependencies(ASTNode node) {
    final Set<IType> result = new HashSet<IType>();
    node.accept(new ASTVisitor() {
        @Override
        public boolean visit(SimpleName node) {
            ITypeBinding typeBinding = node.resolveTypeBinding();
            if (typeBinding == null)
                return false;
            IJavaElement element = typeBinding.getJavaElement();
            if (element != null && element instanceof IType) {
                result.add((IType)element);
            }
            return false;
        }
    });
    return result.toArray(new IType[result.size()]);
}