List of usage examples for com.liferay.portal.kernel.model Theme getName
public String getName();
From source file:com.liferay.layout.admin.web.internal.util.comparator.ThemeNameComparator.java
License:Open Source License
@Override public int compare(Theme theme1, Theme theme2) { String name1 = theme1.getName(); String name2 = theme2.getName(); int value = name1.compareTo(name2); if (_ascending) { return value; } else {//from w ww . j a va2 s . co m return -value; } }