Committed by
Gerrit Code Review
Fixed the UI archetype.
Change-Id: I55b12a0e6778821481c3fcb0cc1feb10c627d5a6
Showing
1 changed file
with
2 additions
and
2 deletions
tools/package/archetypes/ui/src/main/resources/archetype-resources/src/main/java/AppUiComponent.java
| ... | @@ -61,7 +61,7 @@ public class AppUiComponent { | ... | @@ -61,7 +61,7 @@ public class AppUiComponent { |
| 61 | new AppUiMessageHandler() | 61 | new AppUiMessageHandler() |
| 62 | ); | 62 | ); |
| 63 | 63 | ||
| 64 | - // Application UI exctension | 64 | + // Application UI extension |
| 65 | protected UiExtension extension = new UiExtension(uiViews, messageHandlerFactory, | 65 | protected UiExtension extension = new UiExtension(uiViews, messageHandlerFactory, |
| 66 | getClass().getClassLoader()); | 66 | getClass().getClassLoader()); |
| 67 | 67 | ||
| ... | @@ -81,7 +81,7 @@ public class AppUiComponent { | ... | @@ -81,7 +81,7 @@ public class AppUiComponent { |
| 81 | private class AppUiMessageHandler extends UiMessageHandler { | 81 | private class AppUiMessageHandler extends UiMessageHandler { |
| 82 | 82 | ||
| 83 | @Override | 83 | @Override |
| 84 | - protected Collection<RequestHandler> getHandlers() { | 84 | + protected Collection<RequestHandler> createRequestHandlers() { |
| 85 | return ImmutableSet.of(new SampleRequest()); | 85 | return ImmutableSet.of(new SampleRequest()); |
| 86 | } | 86 | } |
| 87 | 87 | ... | ... |
-
Please register or login to post a comment