private Set<String> getIncludeWidgetsets() {
   Set<String> widgetsets = new HashSet<String>();
   if (includeAddons != null) {
     for (VaadinAddonInfo addon : includeAddons) {
       widgetsets.addAll(addon.getWidgetsets());
     }
   }
   widgetsets.add("com.vaadin.DefaultWidgetSet");
   return widgetsets;
 }