blob: 1984b00631a960f76ae2fd219c5ce40ce0659091 [file] [log] [blame]
/**
* Copyright (c) 2009 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Guyomar (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.java.queries.modifiers;
import org.eclipse.modisco.infra.query.core.exception.ModelQueryExecutionException;
import org.eclipse.modisco.infra.query.core.java.IJavaModelQuery;
import org.eclipse.modisco.infra.query.core.java.ParameterValueList;
import org.eclipse.modisco.java.ASTNode;
public class IsAccess implements IJavaModelQuery<ASTNode, Boolean> {
public Boolean evaluate(final ASTNode context, final ParameterValueList parameterValues)
throws ModelQueryExecutionException {
try {
return context.eClass().getName().matches(".*Access"); //$NON-NLS-1$
} catch (Exception e) {
return false;
}
}
}