Package com.google.gwt.i18n.shared

Examples of com.google.gwt.i18n.shared.DirectionEstimator


    * @throws AssertionError if the actual directionEstimator is not equal to the given one.
    *
    * @see ValueBoxBase#getDirectionEstimator()
    */
   public S directionEstimatorEquals(DirectionEstimator expected) {
      DirectionEstimator directionEstimator = actual.getDirectionEstimator();
      if (areEqual(directionEstimator, expected))
         return myself;
      throw propertyComparisonFailed("DirectionEstimator", directionEstimator, expected);
   }
View Full Code Here

TOP

Related Classes of com.google.gwt.i18n.shared.DirectionEstimator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.