我正在编写第一个非常简单的类,以查看我的安装是否可以构建一些东西。所以这就是我所拥有的
import org.jgrapht.ListenableGraph;
import org.jgrapht.ext.JGraphModelAdapter;
import org.jgrapht.graph.DefaultEdge;
import org.jgrapht.graph.ListenableDirectedGraph;
public class Some<JGraph> {
private Some() {
ListenableGraph g = new ListenableDirectedGraph( DefaultEdge.class );
JGraph graph = new JGraph(new JGraphModelAdapter( g ));
}
}
我在 Eclipse 中工作,我有、jgrapgt-core
和setup作为用户库。jgrapht-ext
jgraphx
jgraphx-3.2.2.0
我的问题是当我尝试创建时JGraphModelAdapter
出现错误:
The type org.jgraph.graph.AttributeMap cannot be resolved. It is indirectly referenced from required .class files
任何帮助都会很棒。