All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spoon.support.reflect.declaration.CtNamedElementImpl Maven / Gradle / Ivy

/* 
 * Spoon - http://spoon.gforge.inria.fr/
 * Copyright (C) 2006 INRIA Futurs 
 * 
 * This software is governed by the CeCILL-C License under French law and
 * abiding by the rules of distribution of free software. You can use, modify 
 * and/or redistribute the software under the terms of the CeCILL-C license as 
 * circulated by CEA, CNRS and INRIA at http://www.cecill.info. 
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT 
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
 * FITNESS FOR A PARTICULAR PURPOSE. See the CeCILL-C License for more details.
 *  
 * The fact that you are presently reading this means that you have had
 * knowledge of the CeCILL-C license and that you accept its terms.
 */

package spoon.support.reflect.declaration;

import java.util.Set;
import java.util.TreeSet;

import spoon.reflect.declaration.CtNamedElement;
import spoon.reflect.declaration.ModifierKind;
import spoon.reflect.reference.CtReference;

public abstract class CtNamedElementImpl extends CtElementImpl implements
		CtNamedElement {

	private static final long serialVersionUID = 1L;

	Set modifiers = EMPTY_SET();

	String simpleName;

	public Set getModifiers() {
		return modifiers;
	}

	public boolean addModifier(ModifierKind modifier) {
		if (modifiers == CtElementImpl. EMPTY_SET()) {
			this.modifiers = new TreeSet();
		}
		return modifiers.add(modifier);
	}

	public boolean removeModifier(ModifierKind modifier) {
		return modifiers.remove(modifier);
	}

	public CtReference getReference() {
		return null;
	}

	public String getSimpleName() {
		return simpleName;
	}

	public ModifierKind getVisibility() {
		if (getModifiers().contains(ModifierKind.PUBLIC))
			return ModifierKind.PUBLIC;
		if (getModifiers().contains(ModifierKind.PROTECTED))
			return ModifierKind.PROTECTED;
		if (getModifiers().contains(ModifierKind.PRIVATE))
			return ModifierKind.PRIVATE;
		return null;
	}

	public boolean hasModifier(ModifierKind modifier) {
		return getModifiers().contains(modifier);
	}

	public void setModifiers(Set modifiers) {
		this.modifiers = modifiers;
	}

	public void setSimpleName(String simpleName) {
		this.simpleName = simpleName;
	}

	public void setVisibility(ModifierKind visibility) {
		if (modifiers == CtElementImpl. EMPTY_SET()) {
			this.modifiers = new TreeSet();
		}
		getModifiers().remove(ModifierKind.PUBLIC);
		getModifiers().remove(ModifierKind.PROTECTED);
		getModifiers().remove(ModifierKind.PRIVATE);
		getModifiers().add(visibility);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy