Class HtmlMessageInterpreter
java.lang.Object
com.google.gwt.uibinder.elementparsers.HtmlMessageInterpreter
- All Implemented Interfaces:
com.google.gwt.uibinder.rebind.XMLElement.Interpreter<String>
public class HtmlMessageInterpreter
extends Object
implements com.google.gwt.uibinder.rebind.XMLElement.Interpreter<String>
Processes invalid input: '<'ui:msg> elements inside HTML values, which themselves
are allowed to contain HTML. That HTML may hold elements with
ui:field attributes and computed attributes, which must be
replaced by placeholders in the generated message.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Provides instances ofPlaceholderInterpreter
, to allow customized handling of the innards of a msg element. -
Constructor Summary
ConstructorDescriptionHtmlMessageInterpreter
(com.google.gwt.uibinder.rebind.UiBinderWriter uiWriter, HtmlMessageInterpreter.PlaceholderInterpreterProvider phiProvider) Build a HtmlMessageInterpreter that uses customized placeholder interpreter instances.HtmlMessageInterpreter
(com.google.gwt.uibinder.rebind.UiBinderWriter uiWriter, String ancestorExpression) Build a normally configured HtmlMessageInterpreter, able to handle put placeholders around dom elements with ui:ph attributes and computed attributes. -
Method Summary
Modifier and TypeMethodDescriptioninterpretElement
(com.google.gwt.uibinder.rebind.XMLElement elem) Given an XMLElement, return its filtered value.
-
Constructor Details
-
HtmlMessageInterpreter
public HtmlMessageInterpreter(com.google.gwt.uibinder.rebind.UiBinderWriter uiWriter, HtmlMessageInterpreter.PlaceholderInterpreterProvider phiProvider) Build a HtmlMessageInterpreter that uses customized placeholder interpreter instances. -
HtmlMessageInterpreter
public HtmlMessageInterpreter(com.google.gwt.uibinder.rebind.UiBinderWriter uiWriter, String ancestorExpression) Build a normally configured HtmlMessageInterpreter, able to handle put placeholders around dom elements with ui:ph attributes and computed attributes.
-
-
Method Details
-
interpretElement
public String interpretElement(com.google.gwt.uibinder.rebind.XMLElement elem) throws UnableToCompleteException Description copied from interface:com.google.gwt.uibinder.rebind.XMLElement.Interpreter
Given an XMLElement, return its filtered value.- Specified by:
interpretElement
in interfacecom.google.gwt.uibinder.rebind.XMLElement.Interpreter<String>
- Throws:
UnableToCompleteException
- on error
-