public static abstract @interface

Messages.PluralText

implements Annotation
com.google.gwt.i18n.client.Messages.PluralText

This @interface is deprecated.
use Messages.AlternateMessage instead

Class Overview

Provides multiple plural forms based on a count. The selection of which plural form to use is based on the value of the argument marked PluralCount, which may also specify an alternate plural rule to use.

Example:

   @DefaultMessage("You have {0} widgets.")
   @PluralText({"one", "You have one widget.")
   String example(@PluralCount int count)
 

Summary

[Expand]
Inherited Methods
From interface java.lang.annotation.Annotation