]> source.dussan.org Git - vaadin-framework.git/commitdiff
Use <code> instead of {@code} for sample containing { and } (#12311)
authorLeif Åstrand <leif@vaadin.com>
Fri, 9 Aug 2013 06:42:25 +0000 (09:42 +0300)
committerLeif Åstrand <leif@vaadin.com>
Fri, 9 Aug 2013 06:42:49 +0000 (09:42 +0300)
Change-Id: Ibbcc48e5557521bfe50e73e63ad723fe7da29c9b

server/src/com/vaadin/annotations/JavaScript.java
server/src/com/vaadin/annotations/StyleSheet.java

index bdba70c0958500a6c5475f706279f5cfec75570d..3e9c46083da6a248086dd43d7a3775f52cfcebe7 100644 (file)
@@ -44,10 +44,11 @@ import com.vaadin.server.ClientConnector;
  * file was loaded from a different folder.
  * </ul>
  * <p>
- * Example: {@code @JavaScript( "http://host.com/file1.js", "file2.js"})} on the
- * class com.example.MyConnector would load the file http://host.com/file1.js as
- * is and file2.js from /com/example/file2.js on the server's classpath using
- * the ClassLoader that was used to load com.example.MyConnector.
+ * Example: <code>@JavaScript({"http://host.com/file1.js", "file2.js"})</code>
+ * on the class com.example.MyConnector would load the file
+ * http://host.com/file1.js as is and file2.js from /com/example/file2.js on the
+ * server's classpath using the ClassLoader that was used to load
+ * com.example.MyConnector.
  * 
  * @author Vaadin Ltd
  * @since 7.0.0
index 6540633f8f6b50e489ccba2e90b9e02f9ef24205..bc5b011873dfd9ebb81eeb3ea6dd155b55723a3a 100644 (file)
@@ -49,8 +49,8 @@ import com.vaadin.server.ClientConnector;
  * VAADIN folder and vaadin:// you can publish stylesheets which use images or
  * other files with relative paths.
  * <p>
- * Example: {@code @StyleSheet( "http://host.com/file1.css", "file2.css"})} on
- * the class com.example.MyConnector would load the file
+ * Example: <code>@StyleSheet({"http://host.com/file1.css", "file2.css"})</code>
+ * on the class com.example.MyConnector would load the file
  * http://host.com/file1.css as is and file2.css from /com/example/file2.css on
  * the server's classpath using the ClassLoader that was used to load
  * com.example.MyConnector.