AbstractObjectGrouper.java :  » Swing-Library » jide-oss-2.8.3 » com » jidesoft » grouper » Java Open Source

Java Open Source » Swing Library » jide oss 2.8.3 
jide oss 2.8.3 » com » jidesoft » grouper » AbstractObjectGrouper.java
package com.jidesoft.grouper;

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

/**
 * The abstract implementation of <code>ObjectGrouper</code>. 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;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.