Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2e7644e2a5a2a16a1a55dd6cebdc708375533c34 (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
package org.eclipse.cdt.internal.core.model;

/**********************************************************************
 * Copyright (c) 2002,2003 Rational Software Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Common Public License v0.5
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v05.html
 * 
 * Contributors: 
 * Rational Software - Initial API and implementation
***********************************************************************/
import org.eclipse.cdt.core.model.ICElement;

public class StructureInfo extends VariableInfo {
	
	protected StructureInfo (CElement element) {
		super(element);
		
		if (element.getElementType() == ICElement.C_CLASS)
			this.setTypeName("class"); //$NON-NLS-1$
		else if (element.getElementType() == ICElement.C_UNION)
			this.setTypeName("union"); //$NON-NLS-1$
		else
			this.setTypeName("struct"); //$NON-NLS-1$
	}

	public boolean isUnion() {
		return element.getElementType() == ICElement.C_UNION;
	}

	public boolean isClass() {
		return element.getElementType() == ICElement.C_CLASS;
	}

	public boolean isStruct() {
		return element.getElementType() == ICElement.C_STRUCT;
	}

}

Back to the top