Example usage for com.google.gwt.safehtml.client SafeHtmlTemplates interface-usage

List of usage examples for com.google.gwt.safehtml.client SafeHtmlTemplates interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.safehtml.client SafeHtmlTemplates interface-usage.

Usage

From source file com.arcbees.chosen.client.ChosenTemplate.java

public interface ChosenTemplate extends SafeHtmlTemplates {
    ChosenTemplate templates = GWT.create(ChosenTemplate.class);

    @Template("<li class=\"{1}\" id=\"{0}\">" + "<span>{2}</span>"
            + "<a href=\"javascript:void(0)\" class=\"{3} {6}\" rel=\"{4}\" data-chosen-value=\"{5}\"></a>"
            + "</li>")

From source file com.arcbees.gquery.tooltip.client.contactcell.ContactTemplates.java

public interface ContactTemplates extends SafeHtmlTemplates {
    public static ContactTemplates INSTANCE = GWT.create(ContactTemplates.class);

    @Template("<div class=\"tooltipable\" data-contact-id=\"{1}\">{0}</div>")
    SafeHtml contactCell(String name, String contactId);

From source file com.bearsoft.gwt.ui.menu.MenuItemTemplates.java

/**
 *
 * @author mg
 */
public interface MenuItemTemplates extends SafeHtmlTemplates {

From source file com.eas.menu.MenuItemTemplates.java

/**
 *
 * @author mg
 */
public interface MenuItemTemplates extends SafeHtmlTemplates {

From source file com.gafactory.core.client.ui.constants.BaseTemplates.java

/**
 * @author Alexander Ostrovskiy (a.ostrovskiy)
 * @since 21.05.13
 */
public interface BaseTemplates extends SafeHtmlTemplates {

From source file com.google.gwt.safehtml.shared.test.SampleTemplates.java

public interface SampleTemplates extends SafeHtmlTemplates {
    @Template("<div>{0}</div>")
    SafeHtml render(String thing);
}

From source file net.sf.mmm.client.ui.gwt.widgets.HtmlTemplates.java

/**
 * This is the interface for {@link SafeHtmlTemplates} used for injection/XSS safe HTML markup.
 * 
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */

From source file nl.ru.languageininteraction.language.client.util.SvgTemplate.java

/**
 * @since Dec 10, 2014 4:44:03 PM (creation date)
 * @author Peter Withers <p.withers@psych.ru.nl>
 */
public interface SvgTemplate extends SafeHtmlTemplates {

From source file org.activityinfo.ui.client.page.entry.column.ColumnTemplates.java

public interface ColumnTemplates extends SafeHtmlTemplates {

    public static final ColumnTemplates INSTANCE = GWT.create(ColumnTemplates.class);

    @Template("<span>{0}<br><i>{1}</i></span>")
    SafeHtml locationCell(String location, String axe);

From source file org.jboss.as.console.client.shared.patching.ui.PatchManagementTemplates.java

/**
* @author Harald Pehl
*/
public interface PatchManagementTemplates extends SafeHtmlTemplates {

    @Template("<div class=\"patch-success-panel\"><i class=\"icon-ok icon-large\"></i> {0}</div>")