Revision: 442 http://cishell.svn.sourceforge.net/cishell/?rev=442&view=rev Author: teakettle22 Date: 2007-07-30 10:12:48 -0700 (Mon, 30 Jul 2007) Log Message: ----------- Retrieve the list of Compare Graphs as a two dimensional array of ConverterPaths. Modified Paths: -------------- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java Modified: trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java 2007-07-30 16:11:36 UTC (rev 441) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java 2007-07-30 17:12:48 UTC (rev 442) @@ -200,4 +200,18 @@ str.trimToSize(); return str.toString(); } + + public ArrayList getCompareGraph(String s){ + return (ArrayList)this.fileExtensionCompareConverters.get(s); + } + + public ArrayList getCompareGraphs(){ + String[] fileExtensions = (String[])this.fileExtensionCompareConverters.keySet().toArray(); + ArrayList graphs = new ArrayList(); + for(int i = 0; i < fileExtensions.length; i++){ + graphs.add(getCompareGraph(fileExtensions[i])); + } + return graphs; + } + } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |