Package org.eclipse.nebula.widgets.nattable.layer.event

Examples of org.eclipse.nebula.widgets.nattable.layer.event.RowStructuralRefreshEvent


            @Override
            public void run() {
                if (eventsToProcess && active) {
                    ILayerEvent layerEvent;
                    if (structuralChangeEventsToProcess) {
                        layerEvent = new RowStructuralRefreshEvent(
                                getUnderlyingLayer());
                    } else {
                        layerEvent = new VisualRefreshEvent(
                                getUnderlyingLayer());
                    }
View Full Code Here


    }

    @Override
    public void update(Observable o, Object arg) {
        updateTree();
        fireLayerEvent(new RowStructuralRefreshEvent(this));
    }
View Full Code Here

     *            <code>true</code> to set the filter row visible,
     *            <code>false</code> to hide it.
     */
    public void setFilterRowVisible(boolean filterRowVisible) {
        this.filterRowVisible = filterRowVisible;
        fireLayerEvent(new RowStructuralRefreshEvent(this.filterRowDataLayer));
    }
View Full Code Here

            setAllValuesSelected();
            handled = true;
        }

        if (handled) {
            fireLayerEvent(new RowStructuralRefreshEvent(this));
            return true;
        } else {
            return super.doCommand(command);
        }
    }
View Full Code Here

        return this.groupByModel;
    }

    public void setVisible(boolean visible) {
        this.visible = visible;
        fireLayerEvent(new RowStructuralRefreshEvent(getBaseLayer()));
    }
View Full Code Here

        }

        modelChangeListener = new IColumnGroupModelListener() {
            @Override
            public void columnGroupModelChanged() {
                fireLayerEvent(new RowStructuralRefreshEvent(columnHeaderLayer));
            }
        };

        this.model.registerColumnGroupModelListener(modelChangeListener);
    }
View Full Code Here

                this.rowIndexOrder.addAll(newRowIndexOrder);
            }

        }
        invalidateCache();
        fireLayerEvent(new RowStructuralRefreshEvent(this));
    }
View Full Code Here

        return filterRowVisible;
    }

    public void setFilterRowVisible(boolean filterRowVisible) {
        this.filterRowVisible = filterRowVisible;
        fireLayerEvent(new RowStructuralRefreshEvent(filterRowDataLayer));
    }
View Full Code Here

            getFilterRowDataProvider().clearAllFilters();
            handled = true;
        }

        if (handled) {
            fireLayerEvent(new RowStructuralRefreshEvent(this));
            return true;
        } else {
            return super.doCommand(command);
        }
    }
View Full Code Here

    @Override
    public void loadState(String prefix, Properties properties) {
        super.loadState(prefix, properties);
        model.loadState(prefix, properties);
        fireLayerEvent(new RowStructuralRefreshEvent(this));
    }
View Full Code Here

TOP

Related Classes of org.eclipse.nebula.widgets.nattable.layer.event.RowStructuralRefreshEvent

Copyright © 2018 www.massapicom. 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.