Example usage for com.intellij.openapi.ui StripeTable StripeTable

List of usage examples for com.intellij.openapi.ui StripeTable StripeTable

Introduction

In this page you can find the example usage for com.intellij.openapi.ui StripeTable StripeTable.

Prototype

public StripeTable(TableModel model) 

Source Link

Usage

From source file:org.twodividedbyzero.idea.findbugs.gui.common.TableFacade.java

License:Open Source License

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