[graphl-cvs] graphl/src/org/mediavirus/util ParseUtils.java
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2004-10-27 10:55:51
|
Update of /cvsroot/graphl/graphl/src/org/mediavirus/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18264/src/org/mediavirus/util Modified Files: ParseUtils.java Log Message: - FEATURE: finally implemented sortgedNodeLayouter with proportional layout - AbstractFacet.assignedElements is now a list, to be able to sort it - BUG: block graph update events during loading - FEATURE: nodes are placed at deterministic locations initially (loading the same file twice will result in the same layout) - FEATURE: minor performance enhancements for repulsionnodelayouter - renamed "controls" command line option to "toolbar" Index: ParseUtils.java =================================================================== RCS file: /cvsroot/graphl/graphl/src/org/mediavirus/util/ParseUtils.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ParseUtils.java 19 Oct 2004 16:17:09 -0000 1.3 --- ParseUtils.java 27 Oct 2004 10:55:41 -0000 1.4 *************** *** 73,78 **** /** ! * @param property ! * @return */ public static Font parseFont(String spec) { --- 73,79 ---- /** ! * @param spec A String containing the specification of the font to use, in the ! * format <familyname>-<variant>-<size>. @see java.awt.Font.decode(String). ! * @return The Font described by the specification String, or <code>null</code> if spec == null. */ public static Font parseFont(String spec) { *************** *** 109,114 **** /** ! * @param str ! * @return */ public static float[] parseMatrix(String str) { --- 110,115 ---- /** ! * @param str A String containing the matrix in space-separated form. ! * @return A float[] containing the 3x3 matrix. */ public static float[] parseMatrix(String str) { |