Example usage for com.liferay.portal.kernel.model Theme getName

List of usage examples for com.liferay.portal.kernel.model Theme getName

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.model Theme getName.

Prototype

public String getName();

Source Link

Usage

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;
    }
}