This is an automated email from the git hooks/post-receive script. New commit to branch feature/7615-LL-VerifEcranSchemaPalangre in repository tutti. See http://git.codelutin.com/tutti.git commit ec721e278c761558575c13235ab5b6055877db9e Author: Sylvain Bavencoff <bavencoff@codelutin.com> Date: Thu Mar 10 16:35:35 2016 +0100 Utiliser le decorateur définit pour le type en paramétre (et non le type de ce type) (see #7615). --- .../src/main/java/fr/ird/observe/ui/UIHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/observe-application-swing/src/main/java/fr/ird/observe/ui/UIHelper.java b/observe-application-swing/src/main/java/fr/ird/observe/ui/UIHelper.java index dcc5651..4ad9a89 100644 --- a/observe-application-swing/src/main/java/fr/ird/observe/ui/UIHelper.java +++ b/observe-application-swing/src/main/java/fr/ird/observe/ui/UIHelper.java @@ -344,13 +344,13 @@ public class UIHelper extends SwingUtil { public static DecoratorTableCellRenderer newDecorateTableCellRenderer( TableCellRenderer renderer, Class<?> entityClass) { - Decorator<?> decorator = ObserveSwingApplicationContext.get().getDecoratorService().getDecorator(entityClass); + Decorator<?> decorator = ObserveSwingApplicationContext.get().getDecoratorService().getDecoratorByType(entityClass); return new DecoratorTableCellRenderer(renderer, decorator); } public static DecoratorTableCellRenderer newDecorateTableCellRenderer( TableCellRenderer renderer, Class<?> entityClass, String context) { - Decorator<?> decorator = ObserveSwingApplicationContext.get().getDecoratorService().getDecorator(entityClass, context); + Decorator<?> decorator = ObserveSwingApplicationContext.get().getDecoratorService().getDecoratorByType(entityClass, context); return new DecoratorTableCellRenderer(renderer, decorator); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.