[Buix-commits] r1093 - lutinjaxx/trunk/jaxx-core/src/main/java/jaxx/runtime/validator
Author: tchemit Date: 2008-12-27 15:56:43 +0000 (Sat, 27 Dec 2008) New Revision: 1093 Modified: lutinjaxx/trunk/jaxx-core/src/main/java/jaxx/runtime/validator/ErrorTableMouseListener.java Log: prefer to dispatch the entry of error instead of onyl the error name (in thah way we have all informations in once...) Modified: lutinjaxx/trunk/jaxx-core/src/main/java/jaxx/runtime/validator/ErrorTableMouseListener.java =================================================================== --- lutinjaxx/trunk/jaxx-core/src/main/java/jaxx/runtime/validator/ErrorTableMouseListener.java 2008-12-27 14:19:59 UTC (rev 1092) +++ lutinjaxx/trunk/jaxx-core/src/main/java/jaxx/runtime/validator/ErrorTableMouseListener.java 2008-12-27 15:56:43 UTC (rev 1093) @@ -43,7 +43,7 @@ } JComponent component = entry.getComponent(); if (component != null) { - pcs.firePropertyChange(HIGHLIGHT_ERROR_PROPERTY, null, entry.getError()); + pcs.firePropertyChange(HIGHLIGHT_ERROR_PROPERTY, null, entry); if (component.isVisible()) { component.requestFocus(); }
participants (1)
-
tchemit@users.labs.libre-entreprise.org