Author: tchemit Date: 2011-09-23 13:26:38 +0200 (Fri, 23 Sep 2011) New Revision: 2307 Url: http://nuiton.org/repositories/revision/jaxx/2307 Log: fix compilation + optimize thrid parties Modified: trunk/jaxx-demo/src/license/THIRD-PARTY.properties trunk/jaxx-demo/src/main/java/jaxx/demo/feature/nav/NavDemoHandler.java Modified: trunk/jaxx-demo/src/license/THIRD-PARTY.properties =================================================================== --- trunk/jaxx-demo/src/license/THIRD-PARTY.properties 2011-09-23 10:25:01 UTC (rev 2306) +++ trunk/jaxx-demo/src/license/THIRD-PARTY.properties 2011-09-23 11:26:38 UTC (rev 2307) @@ -1,7 +1,8 @@ # Generated by org.codehaus.mojo.license.AddThirdPartyMojo #------------------------------------------------------------------------------- # Already used licenses in project : -# - BSD License +# - BSD +# - BSD style # - Common Public License Version 1.0 # - GNU General Public License - Version 2 with the class path exception # - GNU Lesser General Public License @@ -9,13 +10,14 @@ # - Lesser General Public License (LGPL) v 3.0 # - Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL) # - The Apache Software License, Version 2.0 +# - http://asm.ow2.org/license.html #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Sun Jul 31 15:14:09 CEST 2011 -asm--asm--3.1--jar=http://asm.ow2.org/license.html -asm--asm-commons--3.1--jar=http://asm.ow2.org/license.html -asm--asm-tree--3.1--jar=http://asm.ow2.org/license.html -commons-primitives--commons-primitives--1.0--jar=The Apache Software License, Version 2.0 -javassist--javassist--3.8.0.GA--jar=Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL) +#Fri Sep 23 13:25:29 CEST 2011 +asm--asm--3.1=http\://asm.ow2.org/license.html +asm--asm-commons--3.1=http\://asm.ow2.org/license.html +asm--asm-tree--3.1=http\://asm.ow2.org/license.html +commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0 +javassist--javassist--3.8.0.GA=Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL) Modified: trunk/jaxx-demo/src/main/java/jaxx/demo/feature/nav/NavDemoHandler.java =================================================================== --- trunk/jaxx-demo/src/main/java/jaxx/demo/feature/nav/NavDemoHandler.java 2011-09-23 10:25:01 UTC (rev 2306) +++ trunk/jaxx-demo/src/main/java/jaxx/demo/feature/nav/NavDemoHandler.java 2011-09-23 11:26:38 UTC (rev 2307) @@ -84,7 +84,7 @@ DecoratorProvider provider = contentUI.getContextValue(DecoratorProvider.class); JXPathDecorator<Movie> decorator = - (JXPathDecorator<Movie>) provider.getDecorator(Movie.class); + (JXPathDecorator<Movie>) provider.getDecoratorByType(Movie.class); contentUI.getListHeader().init(decorator, new ArrayList<Movie>()); } @@ -92,7 +92,7 @@ DecoratorProvider provider = contentUI.getContextValue(DecoratorProvider.class); JXPathDecorator<People> decorator = - (JXPathDecorator<People>) provider.getDecorator(People.class); + (JXPathDecorator<People>) provider.getDecoratorByType(People.class); contentUI.getListHeader().init(decorator, new ArrayList<People>()); }