Revision: 444 http://cishell.svn.sourceforge.net/cishell/?rev=444&view=rev Author: teakettle22 Date: 2007-07-30 10:28:26 -0700 (Mon, 30 Jul 2007) Log Message: ----------- More accurate naming 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 17:25:19 UTC (rev 443) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/converter/graph/ConverterGraph.java 2007-07-30 17:28:26 UTC (rev 444) @@ -201,28 +201,28 @@ return str.toString(); } - public ArrayList getTestGraph(String s){ + public ArrayList getTestPath(String s){ return (ArrayList)this.fileExtensionTestConverters.get(s); } - public ArrayList getTestGraphs(){ + public ArrayList getTestPaths(){ String[] fileExtensions = (String[])this.fileExtensionTestConverters.keySet().toArray(); ArrayList graphs = new ArrayList(); for(int i = 0; i < fileExtensions.length; i++){ - graphs.add(getTestGraph(fileExtensions[i])); + graphs.add(getTestPath(fileExtensions[i])); } return graphs; } - public ConverterPath getCompareGraph(String s){ + public ConverterPath getComparePath(String s){ return (ConverterPath)this.fileExtensionCompareConverters.get(s); } - public ArrayList getCompareGraphs(){ + public ArrayList getComparePaths(){ String[] fileExtensions = (String[])this.fileExtensionCompareConverters.keySet().toArray(); ArrayList graphs = new ArrayList(); for(int i = 0; i < fileExtensions.length; i++){ - graphs.add(getCompareGraph(fileExtensions[i])); + graphs.add(getComparePath(fileExtensions[i])); } return graphs; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |