You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomWidgetSet.java 437B

1234567891011121314
  1. package com.vaadin.test.osgi.myapplication1;
  2. import com.vaadin.osgi.resources.OsgiVaadinTheme;
  3. import com.vaadin.osgi.resources.OsgiVaadinWidgetset;
  4. import com.vaadin.ui.themes.ValoTheme;
  5. import org.osgi.service.component.annotations.Component;
  6. @Component
  7. public class CustomWidgetSet implements OsgiVaadinWidgetset {
  8. @Override
  9. public String getName() {
  10. return "com.vaadin.test.osgi.widgetset.CustomWidgetSet";
  11. }
  12. }