Example usage for javax.swing.table JTableHeader getReorderingAllowed

List of usage examples for javax.swing.table JTableHeader getReorderingAllowed

Introduction

In this page you can find the example usage for javax.swing.table JTableHeader getReorderingAllowed.

Prototype

public boolean getReorderingAllowed() 

Source Link

Document

Returns true if the user is allowed to rearrange columns by dragging their headers, false otherwise.

Usage

From source file:com.haulmont.cuba.desktop.gui.components.DesktopAbstractTable.java

@Override
public boolean getColumnReorderingAllowed() {
    JTableHeader tableHeader = impl.getTableHeader();
    return tableHeader.getReorderingAllowed();
}