From: <jen...@us...> - 2009-03-06 10:35:50
|
Revision: 1645 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=1645&view=rev Author: jenslehmann Date: 2009-03-06 10:35:34 +0000 (Fri, 06 Mar 2009) Log Message: ----------- fix in Protege plugin Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/tools/protege/ActionHandler.java trunk/src/dl-learner/org/dllearner/tools/protege/OptionPanel.java Modified: trunk/src/dl-learner/org/dllearner/tools/protege/ActionHandler.java =================================================================== --- trunk/src/dl-learner/org/dllearner/tools/protege/ActionHandler.java 2009-03-05 19:09:08 UTC (rev 1644) +++ trunk/src/dl-learner/org/dllearner/tools/protege/ActionHandler.java 2009-03-06 10:35:34 UTC (rev 1645) @@ -330,8 +330,7 @@ // TODO Auto-generated catch block e.printStackTrace(); } - List<? extends EvaluatedDescription> result = la.getCurrentlyBestEvaluatedDescriptions(view.getPosAndNegSelectPanel().getOptionPanel().getNrOfConcepts() - , view.getPosAndNegSelectPanel().getOptionPanel().getMinAccuracy(), true); + List<? extends EvaluatedDescription> result = la.getCurrentlyBestEvaluatedDescriptions(view.getPosAndNegSelectPanel().getOptionPanel().getNrOfConcepts()); return result; } Modified: trunk/src/dl-learner/org/dllearner/tools/protege/OptionPanel.java =================================================================== --- trunk/src/dl-learner/org/dllearner/tools/protege/OptionPanel.java 2009-03-05 19:09:08 UTC (rev 1644) +++ trunk/src/dl-learner/org/dllearner/tools/protege/OptionPanel.java 2009-03-06 10:35:34 UTC (rev 1645) @@ -46,7 +46,7 @@ public OptionPanel() { setPreferredSize(new Dimension(490, 100)); setLayout(null); - minAccuracyLabel = new JLabel("minimum accuracy"); + minAccuracyLabel = new JLabel("noise in %"); minAccuracyLabel.setBounds(5, 0, 150, 40); maxExecutionTimeLabel = new JLabel("maximum execution time"); maxExecutionTimeLabel.setBounds(5, 40, 150, 40); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |