blob: 3046049b922f9d4310354a9c7ad89644e0458125 [file] [log] [blame]
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.safehtml.client;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* A tag interface that facilitates compile-time binding of HTML templates to
* generate SafeHtml strings.
*
* <p>Example usage:
* <pre>
* public interface MyTemplate extends SafeHtmlTemplates {
* &#064;Template("&lt;span class=\"{3}\"&gt;{0}: &lt;a href=\"{1}\"&gt;{2}&lt;/a&gt;&lt;/span&gt;")
* SafeHtml messageWithLink(SafeHtml message, String url, String linkText,
* String style);
* }
*
* private static final MyTemplate TEMPLATE = GWT.create(MyTemplate.class);
*
* public void useTemplate(...) {
* SafeHtml message;
* String url;
* String linkText;
* String style;
* // ...
* SafeHtml messageWithLink =
* TEMPLATE.messageWithLink(message, url, linkText, style);
* }
* </pre>
*
* Instantiating a SafeHtmlTemplates interface with {@code GWT.create()} returns
* an instance of an implementation that is generated at compile time. The code
* generator parses the value of each template method's {@code @Template}
* annotation as a (X)HTML template, with template variables denoted by
* curly-brace placeholders that refer by index to the corresponding template
* method parameter.
*/
public interface SafeHtmlTemplates {
/**
* The HTML template.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Documented
public @interface Template {
String value();
}
}