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

com.jidesoft.grouper.AbstractObjectGrouper Maven / Gradle / Ivy

There is a newer version: 3.6.18
Show newest version
package com.jidesoft.grouper;

import com.jidesoft.comparator.ComparatorContext;
import com.jidesoft.converter.ConverterContext;

/**
 * The abstract implementation of ObjectGrouper. It just implements the {@link #getConverterContext()} and
 * {@link #getComparatorContext()} methods.
 */
abstract public class AbstractObjectGrouper implements ObjectGrouper {
    public ConverterContext getConverterContext() {
        return null;
    }

    public ComparatorContext getComparatorContext() {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy