blob: 104547127e354c7044a2ec832561fc954188f4fb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Ericsson
*
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Patrick Tasse - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ui.editors;
import org.eclipse.tracecompass.internal.tmf.ui.editors.TmfTableColumnUtils;
/**
* This class manages the column settings associated with a trace type.
*
* @author Patrick Tasse
* @since 1.0
*/
public class TmfTraceColumnManager {
/**
* Get the latest saved table column order for the specified trace type.
* Returns null if no column order is set.
*
* @param traceTypeId
* the trace type id
* @return the table column order, or null
*/
public static int[] loadColumnOrder(String traceTypeId) {
return TmfTableColumnUtils.loadColumnOrder(traceTypeId);
}
/**
* Saves the table column order for the specified trace type. Passing a null
* column order clears it.
*
* @param traceTypeId
* the trace type id
* @param columnOrder
* the table column order
*/
public static void saveColumnOrder(String traceTypeId, int[] columnOrder) {
TmfTableColumnUtils.saveColumnOrder(traceTypeId, columnOrder);
}
/**
* Clears the table column order for the specified trace type.
*
* @param traceTypeId
* the trace type id
*/
public static void clearColumnOrder(String traceTypeId) {
TmfTableColumnUtils.clearColumnOrder(traceTypeId);
}
}