com.jidesoft.grouper.AbstractObjectGrouper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
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