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.

KarafTestTheme.java 364B

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