/******************************************************************************* * Copyright (c) 2004, 2005 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ /* */ package org.eclipse.jem.workbench.utility; import org.eclipse.jdt.core.dom.Name; import org.eclipse.jdt.core.dom.Type; import org.eclipse.jem.internal.instantiation.InstantiationFactory; import org.eclipse.jem.internal.instantiation.PTExpression; import org.eclipse.jem.workbench.utility.ParseTreeCreationFromAST.InvalidExpressionException; /** * This is used for AST Resolution, but it simply turns Name into PTName. Useful when * just creating a parse tree where we know the names are ok and just types. * @since 1.0.0 */ public class NoASTResolver extends ASTBoundResolver { /* (non-Javadoc) * @see org.eclipse.jem.workbench.utility.ParseTreeCreationFromAST.Resolver#resolveName(org.eclipse.jdt.core.dom.Name) */ public PTExpression resolveName(Name name) throws InvalidExpressionException { return InstantiationFactory.eINSTANCE.createPTName(name.toString()); } /* (non-Javadoc) * @see org.eclipse.jem.workbench.utility.ParseTreeCreationFromAST.Resolver#resolveType(org.eclipse.jdt.core.dom.Type) */ public String resolveType(Type type) { return type.toString(); } /* (non-Javadoc) * @see org.eclipse.jem.workbench.utility.ParseTreeCreationFromAST.Resolver#resolveType(org.eclipse.jdt.core.dom.Name) */ public String resolveType(Name name) throws InvalidExpressionException { return name.toString(); } }