Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5683ff88b2dbea742d5a078098ae12b52ee0e360 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*****************************************************************************
 * Copyright (c) 2013 CEA LIST.
 *
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.nattable.comparator;

import java.util.Comparator;

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.nebula.widgets.nattable.NatTable;
import org.eclipse.nebula.widgets.nattable.config.IConfigRegistry;
import org.eclipse.nebula.widgets.nattable.sort.SortDirectionEnum;
import org.eclipse.nebula.widgets.nattable.style.DisplayMode;
import org.eclipse.papyrus.infra.nattable.layerstack.BodyLayerStack;
import org.eclipse.papyrus.infra.nattable.manager.table.INattableModelManager;
import org.eclipse.papyrus.infra.nattable.utils.NattableConfigAttributes;
import org.eclipse.papyrus.infra.services.labelprovider.service.LabelProviderService;

/**
 * Abstract class for axis comparator
 * 
 * @author vl222926
 * 
 */
public abstract class AbstractAxisComparator implements Comparator<Object> {

	/**
	 * the table manager
	 */
	protected final INattableModelManager tableManager;

	/**
	 * the sort direction
	 */
	protected final SortDirectionEnum direction;

	/**
	 * the label provider service
	 */
	protected final LabelProviderService serv;

	/**
	 * the body layer stack
	 */
	protected final BodyLayerStack stack;

	/**
	 * the config registry
	 */
	protected final IConfigRegistry configRegistry;

	/**
	 * the selected column object
	 */
	protected final Object selectedColumn;

	/**
	 * 
	 * Constructor.
	 * 
	 * @param selectedColumn
	 * @param direction
	 * @param tableManager
	 */
	public AbstractAxisComparator(final Object selectedColumn, final SortDirectionEnum direction, final INattableModelManager tableManager) {
		this.configRegistry = ((NatTable)((IAdaptable)tableManager).getAdapter(NatTable.class)).getConfigRegistry();
		this.tableManager = tableManager;
		this.direction = direction;
		this.selectedColumn = selectedColumn;
		this.serv = this.configRegistry.getConfigAttribute(NattableConfigAttributes.LABEL_PROVIDER_SERVICE_CONFIG_ATTRIBUTE, DisplayMode.NORMAL, NattableConfigAttributes.LABEL_PROVIDER_SERVICE_ID);
		this.stack = tableManager.getBodyLayerStack();
	}
}

Back to the top