From: <bh...@us...> - 2006-10-24 17:22:51
|
Revision: 314 http://svn.sourceforge.net/cishell/?rev=314&view=rev Author: bh2 Date: 2006-10-24 10:22:45 -0700 (Tue, 24 Oct 2006) Log Message: ----------- disabled DataValidator usage until we find a better fix Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java 2006-10-24 14:35:20 UTC (rev 313) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java 2006-10-24 17:22:45 UTC (rev 314) @@ -149,10 +149,13 @@ } else { originalData = null; } + - setEnabled(data != null && isValid()); + setEnabled(data != null); //&& isValid()); } + //This method will be disabled until we can find a better solution + //for extra validation beyond input/output checking private boolean isValid() { String valid = null; String[] classes = (String[]) ref.getProperty(Constants.OBJECTCLASS); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |