All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cornell.mannlib.vitro.webapp.beans.PropertyGroup Maven / Gradle / Ivy

/* $This file is distributed under the terms of the license in LICENSE$ */

package edu.cornell.mannlib.vitro.webapp.beans;

import java.text.Collator;
import java.util.List;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class PropertyGroup extends BaseResourceBean implements Comparable {

    private static final Log log = LogFactory.getLog(PropertyGroup.class.getName());

	private int displayRank;
	private String name;
	private List propertyList;
	private int statementCount;
	private String publicDescription;

	public int getDisplayRank() {
		return this.displayRank;
	}

	public void setDisplayRank(int in) {
		this.displayRank = in;
	}

	public String getName() {
		return this.name;
	}

	public void setName(String in) {
		this.name = in;
	}

	public List getPropertyList() {
		return this.propertyList;
	}

	public void setPropertyList(List in) {
		this.propertyList = in;
	}

	public int getStatementCount() {
	    return statementCount;
	}

	public void setStatementCount(int count) {
	    statementCount = count;
	}

	public String getPublicDescription() {
	    return publicDescription;
	}

	public void setPublicDescription(String s) {
	    publicDescription = s;
	}



    /**
     * Sorts PropertyGroup objects by group rank, then alphanumeric.
     */
    public int compareTo(PropertyGroup o2) {
    	Collator collator = Collator.getInstance();
        if (o2 == null) {
            log.error("object NULL in DisplayComparator()");
            return 0;
        }
        int diff = (this.getDisplayRank() - o2.getDisplayRank());
        if (diff == 0 ) {
            return collator.compare(this.getName(),o2.getName());
        }
        return diff;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy