Package org.twodividedbyzero.idea.findbugs.gui.common

Source Code of org.twodividedbyzero.idea.findbugs.gui.common.TableFacade

/*
* Copyright 2008-2013 Andre Pfeiler
*
* This file is part of FindBugs-IDEA.
*
* FindBugs-IDEA 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.
*
* FindBugs-IDEA 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 FindBugs-IDEA.  If not, see <http://www.gnu.org/licenses/>.
*/

package org.twodividedbyzero.idea.findbugs.gui.common;

import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.ui.StripeTable;
import com.intellij.ui.table.JBTable;

import javax.swing.JTable;
import javax.swing.table.TableModel;


/**
* $Date: 2013-12-05 08:09:56 -0600 (Thu, 05 Dec 2013) $
*
* @author Andre Pfeiler<andrep@dev.java.net>
* @version $Revision: 257 $
* @since 0.9.97
*/
@SuppressWarnings({"UnusedDeclaration"})
public final class TableFacade {

  private static final Logger LOGGER = Logger.getInstance(TableFacade.class.getName());


  private TableFacade() {
  }

  public static JTable createStripeTable(final TableModel dataModel) {
    return new StripeTable(dataModel);
  }


  public static JTable createTable(final TableModel dataModel) {
    return new JBTable(dataModel);
  }


  public static JTable createTable() {
    return new JBTable();
  }

}
TOP

Related Classes of org.twodividedbyzero.idea.findbugs.gui.common.TableFacade

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.