com.jidesoft.grouper.AbstractObjectGrouper Maven / Gradle / Ivy
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