01: package com.jidesoft.grouper;
02:
03: import com.jidesoft.converter.ConverterContext;
04: import com.jidesoft.comparator.ComparatorContext;
05:
06: /**
07: * The abstract implenmentation of <code>ObjectGrouper</code>.
08: * It just implements the {@link #getConverterContext()} and {@link #getComparatorContext()}
09: * methods.
10: */
11: abstract public class AbstractObjectGrouper implements ObjectGrouper {
12: public ConverterContext getConverterContext() {
13: return null;
14: }
15:
16: public ComparatorContext getComparatorContext() {
17: return null;
18: }
19: }
|