Examples of Pluralizer


Examples of org.jvnet.inflector.Pluralizer

        return selectItem;
    }

    private List<SelectItem> convertToSelectItems(List<ResourceType> resourceTypes, boolean pluralize) {
        List<SelectItem> selectItems = new ArrayList<SelectItem>();
        Pluralizer customPluralizer = new CustomEnglishPluralizer();
        Set<String> dupResourceTypeNames = getDuplicateResourceTypeNames(resourceTypes);
        for (ResourceType resourceType : resourceTypes) {
            String resourceTypeName = resourceType.getName();
            String pluralizedName = resourceTypeName;
            try {
                if (pluralize)
                    pluralizedName = customPluralizer.pluralize(resourceTypeName);
            }
            catch (StringIndexOutOfBoundsException oobe) { // Work around a bug in the pluralizer, BZ 594417
                // Just ignore it and take the plain resource type name
            }
            String label = NBSP + " - "
View Full Code Here

Examples of org.jvnet.inflector.Pluralizer

  }

  @Test
  public void shouldInflectUsingCustomInflector()
  {
    Pluralizer inflector = new Pluralizer()
    {
      public String pluralize(String word, int number)
      {
        return "custom works!";
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.