Package org.jboss.errai.ui.shared.api.annotations

Examples of org.jboss.errai.ui.shared.api.annotations.StyleDescriptor


  private Collection<URL> getStylesheets(final GeneratorContext context) {
    final Class<?> styleDescriptorClass = getStyleDescriptorClass(context);
    final Collection<URL> stylesheets = new ArrayList<URL>();

    if (styleDescriptorClass != null) {
      final StyleDescriptor styleDescriptor = styleDescriptorClass.getAnnotation(StyleDescriptor.class);
      for (final String path : styleDescriptor.value()) {
        stylesheets.add(transformPath(styleDescriptorClass, path));
      }
    }

    return stylesheets;
View Full Code Here

TOP

Related Classes of org.jboss.errai.ui.shared.api.annotations.StyleDescriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.