SiLeBAT/FSK-Lab

View on GitHub
org.hsh.bfr.db/src/org/hsh/bfr/db/gui/dbtable/sorter/MyOtherSorter.java

Summary

Maintainability
A
1 hr
Test Coverage
/*******************************************************************************
 * Copyright (c) 2015 Federal Institute for Risk Assessment (BfR), Germany
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Contributors:
 *     Department Biological Safety - BfR
 *******************************************************************************/
package org.hsh.bfr.db.gui.dbtable.sorter;

import java.util.Comparator;

/**
 * @author Armin
 *
 */
public class MyOtherSorter implements Comparator<Object> {

  @Override
  public int compare(Object o1, Object o2) {
      //System.out.println("MyOtherSorter");
      if (o1 == null && o2 == null) return 0;
      else if (o1 == null) return 1;
      else if (o2 == null) return -1;
        if (o1 instanceof Object[] && o2 instanceof Object[]) {
            //Object[] oo1 = (Object[]) o1;
            //Object[] oo2 = (Object[]) o2;
            // Tja, was tun?
            return 0;
        }
      else {
          return 0;
      }
  }
}