
com.jidesoft.grouper.AbstractObjectGrouper Maven / Gradle / Ivy
package com.jidesoft.grouper;
import com.jidesoft.converter.ConverterContext;
import com.jidesoft.comparator.ComparatorContext;
/**
* The abstract implenmentation 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