Class StrictAttributeParser

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected com.google.gwt.uibinder.rebind.MortalLogger logger  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String parse​(com.google.gwt.uibinder.rebind.XMLElement source, java.lang.String value)
      If the value holds a single field reference "{like.this}", converts it to a Java Expression.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • logger

        protected final com.google.gwt.uibinder.rebind.MortalLogger logger
    • Constructor Detail

      • StrictAttributeParser

        StrictAttributeParser​(FieldReferenceConverter converter,
                              com.google.gwt.uibinder.rebind.MortalLogger logger,
                              JType... types)
    • Method Detail

      • parse

        public java.lang.String parse​(com.google.gwt.uibinder.rebind.XMLElement source,
                                      java.lang.String value)
                               throws UnableToCompleteException
        If the value holds a single field reference "{like.this}", converts it to a Java Expression.

        In any other case (e.g. more than one field reference), an UnableToCompleteException is thrown.

        Specified by:
        parse in interface AttributeParser
        Parameters:
        source - the source code the value came from, for error reporting purposes
        value - the attribute value to be parsed
        Returns:
        a valid Java expression
        Throws:
        UnableToCompleteException - on parse error