/** * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.applicationregistry.webui; import java.util.Comparator; import org.exoplatform.application.gadget.Gadget; import org.exoplatform.application.registry.Application; import org.exoplatform.application.registry.ApplicationCategory; import org.gatein.common.i18n.LocalizedString; /** Created by The eXo Platform SAS Author : Pham Thanh Tung thanhtungty@gmail.com Sep 11, 2008 */ public class Util { public static String getLocalizedStringValue(LocalizedString localizedString, String defaultValue) { if (localizedString == null || localizedString.getDefaultString() == null) { return defaultValue; } else { return localizedString.getDefaultString(); } } public static class CategoryComparator implements Comparator<ApplicationCategory> { public int compare(ApplicationCategory cate1, ApplicationCategory cate2) { return cate1.getDisplayName(true).compareToIgnoreCase(cate2.getDisplayName(true)); } } public static class ApplicationComparator implements Comparator<Application> { public int compare(Application app1, Application app2) { String firstDisplayName = app1.getDisplayName(); if (firstDisplayName == null) { firstDisplayName = ""; } String secondDisplayName = app2.getDisplayName(); if (secondDisplayName == null) { secondDisplayName = ""; } return firstDisplayName.compareToIgnoreCase(secondDisplayName); } } public static class GadgetComparator implements Comparator<Gadget> { public int compare(Gadget gadget1, Gadget gadget2) { String firstTitle = gadget1.getTitle(); if (firstTitle == null) { firstTitle = ""; } String secondTitle = gadget2.getTitle(); if (secondTitle == null) { secondTitle = ""; } return firstTitle.compareToIgnoreCase(secondTitle); } } }