From: <ton...@us...> - 2008-01-19 18:39:31
|
Revision: 404 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=404&view=rev Author: tonytacker Date: 2008-01-19 10:39:28 -0800 (Sat, 19 Jan 2008) Log Message: ----------- fixed warning Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/gui/LearningAlgorithmPanel.java Modified: trunk/src/dl-learner/org/dllearner/gui/LearningAlgorithmPanel.java =================================================================== --- trunk/src/dl-learner/org/dllearner/gui/LearningAlgorithmPanel.java 2008-01-19 17:43:46 UTC (rev 403) +++ trunk/src/dl-learner/org/dllearner/gui/LearningAlgorithmPanel.java 2008-01-19 18:39:28 UTC (rev 404) @@ -29,6 +29,7 @@ import org.dllearner.core.LearningAlgorithm; import org.dllearner.core.config.ConfigOption; +import org.dllearner.core.ComponentManager; @@ -86,11 +87,13 @@ if (e.getSource() == testButton) { // TEST - optionList = config.getComponentManager().getConfigOptions(learners.get(cb.getSelectedIndex())); - //System.out.println("optionName: " + optionList); - System.out.println("option 0:\n" + optionList.get(0)); - + //available options for selected class + optionList = ComponentManager.getConfigOptions(learners.get(cb.getSelectedIndex())); + System.out.println(optionList); + //System.out.println("option 0:\n" + optionList.get(0)); + System.out.println("size: " + optionList.size()); + } if (e.getSource() == initButton) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |