com.vaadin.annotations.JavaScript.value()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 JavaScript  
字(1.3k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中com.vaadin.annotations.JavaScript.value()方法的一些代码示例,展示了JavaScript.value()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JavaScript.value()方法的具体详情如下:
包路径:com.vaadin.annotations.JavaScript
类名称:JavaScript
方法名:value

JavaScript.value介绍

暂无

代码示例

代码示例来源:origin: com.vaadin/vaadin-server

resources = ((StyleSheet) annotation).value();
} else if (annotation instanceof JavaScript) {
  resources = ((JavaScript) annotation).value();
} else if (annotation instanceof HtmlImport) {
  resources = ((HtmlImport) annotation).value();

代码示例来源:origin: com.vaadin/hummingbird-server

/**
   * Adds the dependencies defined using {@link StyleSheet},
   * {@link JavaScript} or {@link HtmlImport} on the given Component class.
   *
   * @param componentClass
   *            the component class to read annotations from
   */
  public void addComponentDependencies(
      Class<? extends Component> componentClass) {
    Page page = ui.getPage();
    List<HtmlImport> htmlImports = AnnotationReader
        .getHtmlImportAnnotations(componentClass);
    htmlImports.forEach(html -> page.addHtmlImport(html.value()));

    List<JavaScript> javaScripts = AnnotationReader
        .getJavaScriptAnnotations(componentClass);
    javaScripts.forEach(js -> page.addJavaScript(js.value()));

    List<StyleSheet> styleSheets = AnnotationReader
        .getStyleSheetAnnotations(componentClass);
    styleSheets
        .forEach(styleSheet -> page.addStyleSheet(styleSheet.value()));

  }
}

相关文章