]> source.dussan.org Git - gwtquery.git/commitdiff
Adding javadoc to new methods
authorManolo Carrasco <manolo@apache.org>
Fri, 30 Jan 2015 13:24:11 +0000 (14:24 +0100)
committerManolo Carrasco <manolo@apache.org>
Fri, 30 Jan 2015 13:24:11 +0000 (14:24 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/ajax/Ajax.java

index 429b00ebd8010a3fe975106f0c2f25df9edf98f5..a9bebd4886250cd91d71f496233f56bf17fe9de4 100644 (file)
@@ -462,6 +462,14 @@ public class Ajax extends GQuery {
     return this;
   }
 
+  /**
+   * Load an external resource using the link tag element.
+   * It is appended to the head of the document.
+   *
+   * @param rel Specifies the relationship between the current document and the linked document.
+   * @param url Specifies the location of the linked document
+   * @return a Promise which will be resolved when the external resource has been loaded.
+   */
   public static Promise loadLink(final String rel, final String url) {
     GQuery link = $("link[rel='" + rel + "'][href^='" + url + "']");
     if (link.isEmpty()) {
@@ -487,6 +495,11 @@ public class Ajax extends GQuery {
     }
   }
 
+  /**
+   * Load an external html resource using the link tag element, it sets
+   * the relationship between the current document as 'import'.
+   * It is very useful to import web-components.
+   */
   public static Promise importHtml(String url) {
     return loadLink("import", url);
   }