[graphl-cvs] graphl/src/org/mediavirus/graphl/view LabelGenerator.java
Status: Pre-Alpha
Brought to you by:
flo1
|
From: Flo L. <fl...@us...> - 2004-10-19 16:17:48
|
Update of /cvsroot/graphl/graphl/src/org/mediavirus/graphl/view In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17517/src/org/mediavirus/graphl/view Modified Files: LabelGenerator.java Log Message: - FEATURE further commandline options to remove controls and menubar - FEATURE load url from commandline - FEATURE refresh every n seconds commandline option - FEATURE affine coordinate transformation for geo positioning on a map - FEATURE removed length property of edge, replaced by generic length calculation from any property in springEdgeLayouter - FEATURE configurable stroke for BoxNodePainter, ShapeNodePainter - FEATURE replaced rdfutils function by own implementation in ParseUtils Index: LabelGenerator.java =================================================================== RCS file: /cvsroot/graphl/graphl/src/org/mediavirus/graphl/view/LabelGenerator.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** LabelGenerator.java 14 Oct 2004 13:03:02 -0000 1.7 --- LabelGenerator.java 19 Oct 2004 16:17:07 -0000 1.8 *************** *** 12,15 **** --- 12,16 ---- import org.mediavirus.graphl.graph.Edge; import org.mediavirus.graphl.graph.Node; + import org.mediavirus.util.ParseUtils; import edu.unika.aifb.rdf.api.util.RDFUtil; *************** *** 72,76 **** if (value != null && guessName) { ! return RDFUtil.guessName(value); } else { --- 73,77 ---- if (value != null && guessName) { ! return ParseUtils.guessName(value); } else { *************** *** 101,105 **** if (guessName) { ! return RDFUtil.guessName(value); } else { --- 102,106 ---- if (guessName) { ! return ParseUtils.guessName(value); } else { |