Merge "Make gwtexpui SafeHtml compatible with GWT SafeHtml"

This commit is contained in:
Edwin Kempin
2013-07-08 19:06:25 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 1 deletions

View File

@@ -29,7 +29,9 @@ import java.util.Iterator;
import java.util.List;
/** Immutable string safely placed as HTML without further escaping. */
public abstract class SafeHtml {
@SuppressWarnings("serial")
public abstract class SafeHtml
implements com.google.gwt.safehtml.shared.SafeHtml {
public static final SafeHtmlResources RESOURCES;
static {

View File

@@ -19,6 +19,7 @@ import com.google.gwt.core.client.GWT;
/**
* Safely constructs a {@link SafeHtml}, escaping user provided content.
*/
@SuppressWarnings("serial")
public class SafeHtmlBuilder extends SafeHtml {
private static final Impl impl;