Change comments

This commit is contained in:
Matthias Kurz 2019-01-27 14:09:36 +01:00
parent 7bbc640e6e
commit edcec3bd5c
No known key found for this signature in database
GPG Key ID: 0B4AAA92F1117EF5
2 changed files with 5 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import java.net.MalformedURLException;
import java.net.URL;
/**
* Builds an extended sitemap with google support for google extensions. To configure options use {@link #builder(URL, File)}
* Builds a sitemap for Google Image search. To configure options use {@link #builder(URL, File)}
* @see <a href="https://support.google.com/webmasters/answer/183668">Manage your sitemaps</a>
* */
public class GoogleImageSitemapGenerator extends SitemapGenerator<GoogleImageSitemapUrl, GoogleImageSitemapGenerator> {

View File

@ -6,8 +6,10 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/** Configurable sitemap url with support for Google extensions
* @see <a href="https://support.google.com/webmasters/answer/183668">Manage your sitemaps</a>
/** One configurable Google Image Search URL. To configure, use {@link Options}
*
* @see Options
* @see <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=183668">Creating Image Sitemaps</a>
*/
public class GoogleImageSitemapUrl extends WebSitemapUrl {