All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.header.FaviconHeader Maven / Gradle / Ivy

The newest version!
package org.wings.header;

import org.wings.URLResource;
import org.wings.resource.DefaultURLResource;

/**
 * Use this to add a favicon (header) to a frame.
 * 
 *   frame.addHeader(new FaviconHeader("../images/favicon.ico"));
 * 
 */
public class FaviconHeader extends Link {


    public FaviconHeader(String url) {
        this(new DefaultURLResource(url));
    }

    public FaviconHeader(URLResource resource) {
        super("shortcut icon", null, "image/vnd.microsoft.icon", null, resource);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy