Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b7144c5dc5e566f330ac35e111f78d72d193f0e8 (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
/*****************************************************************************
 * Copyright (c) 2014 CEA LIST and others.
 * 
 * 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:
 *   CEA LIST - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.infra.nattable.wizard;

import org.eclipse.papyrus.infra.nattable.model.nattable.nattableaxis.ITreeItemAxis;
import org.eclipse.papyrus.infra.nattable.model.nattable.nattableaxis.IdTreeItemAxis;
import org.eclipse.papyrus.infra.tools.util.TypeUtils;

/**
 * @author Vincent Lorenzo
 *
 *         This class is not in the API
 */
public class CategoriesWizardUtils {

	/**
	 * Constructor.
	 *
	 */
	private CategoriesWizardUtils() {
		// to prevent instanciation
	}

	/**
	 * 
	 * @param axis
	 *            an axis
	 * @return
	 *         <code>true</code> if the axis represents a root element
	 */
	public static final boolean isRootItem(ITreeItemAxis axis) {
		return axis.getParent() == null;
	}

	/**
	 * 
	 * @param axis
	 *            an axis
	 * @return
	 *         <code>true</code> if the axis represents a depth
	 */
	public static final boolean isDepthItem(ITreeItemAxis axis) {
		if (axis instanceof IdTreeItemAxis) {
			String element = ((IdTreeItemAxis) axis).getElement();
			return TypeUtils.isNaturalValue(element);
		}
		return false;
	}

	/**
	 * @param axis
	 * @returnplugins/infra/nattable/org.eclipse.papyrus.infra.nattable/src/org/eclipse/papyrus/infra/nattable/wizard/CategoriesWizardUtils.java
	 *                                                                                                                                           <code>true</code> if the axis represents a category item
	 */
	public static boolean isCategoryItem(ITreeItemAxis axis) {
		return !(isDepthItem(axis) || isRootItem(axis));
	}

}

Back to the top