/******************************************************************************* * Copyright (c) 2011 Bruno Medeiros and other Contributors. * 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: * Bruno Medeiros - initial API and implementation *******************************************************************************/ package dtool.ast.references; import static melnorme.utilbox.core.Assert.AssertNamespace.assertTrue; import melnorme.lang.tooling.ast.IASTVisitor; import melnorme.lang.tooling.ast.util.ASTCodePrinter; public abstract class CommonRefIdentifier extends NamedReference { protected final String identifier; public CommonRefIdentifier(String identifier) { this.identifier = identifier; assertTrue(identifier == null || identifier.length() > 0); assertTrue(getDenulledIdentifier().indexOf(' ') == -1); } @Override public final void visitChildren(IASTVisitor visitor) { } @Override public final void toStringAsCode(ASTCodePrinter cp) { cp.append(identifier); } @Override public String getCoreReferenceName() { return identifier; } public boolean isMissing() { return identifier == null; } public String getDenulledIdentifier() { return identifier == null ? "" : identifier; } }