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

Examples of org.eclipse.nebula.widgets.nattable.columnRename.event.RenameColumnHeaderEvent


    public boolean renameColumnPosition(int columnPosition,
            String customColumnName) {
        boolean renamed = renameColumnHelper.renameColumnPosition(
                columnPosition, customColumnName);
        if (renamed) {
            fireLayerEvent(new RenameColumnHeaderEvent(this, columnPosition));
        }
        return renamed;
    }
View Full Code Here


    public boolean renameColumnIndex(int columnIndex, String customColumnName) {
        boolean renamed = renameColumnHelper.renameColumnIndex(columnIndex,
                customColumnName);
        if (renamed) {
            fireLayerEvent(new RenameColumnHeaderEvent(this, columnIndex));
        }
        return renamed;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.nebula.widgets.nattable.columnRename.event.RenameColumnHeaderEvent

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.