[graphl-cvs] graphl/src/org/mediavirus/graphl/graph/filter FilteredGraph.java
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2005-09-07 12:30:15
|
Update of /cvsroot/graphl/graphl/src/org/mediavirus/graphl/graph/filter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25832/src/org/mediavirus/graphl/graph/filter Modified Files: FilteredGraph.java Log Message: - FEATURE: type menu pops up upon edge creation - BUG: fixed assignment of unique ids to new nodes - BUG: fixed in-place editor for nodes - CODE: loading graphs is now synchronized to avoid loading conflicts - CODE: restoring Graphics transform in GraphlPane after rendering Index: FilteredGraph.java =================================================================== RCS file: /cvsroot/graphl/graphl/src/org/mediavirus/graphl/graph/filter/FilteredGraph.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FilteredGraph.java 5 Sep 2005 15:44:07 -0000 1.3 --- FilteredGraph.java 7 Sep 2005 12:29:55 -0000 1.4 *************** *** 16,20 **** import org.mediavirus.graphl.graph.GraphListener; import org.mediavirus.graphl.graph.Node; - import org.mediavirus.graphl.vocabulary.NS; /** --- 16,19 ---- *************** *** 125,131 **** for (Iterator edgesI = edges.iterator(); edgesI.hasNext();) { Edge edge = (Edge) edgesI.next(); - if (edge.getType().equals(NS.rdfs + "subClassOf") && edge.getTo().getId().equals("http://xmlns.com/wordnet/1.6/Person")) { - System.out.println("foo"); - } if (filterEdge(edge, sourceGraph)) filteredEdges.add(edge); } --- 124,127 ---- |