blob: e059694b5c2ffa18956a58b4ad5e815e7a0e6ec7 [file] [log] [blame]
/**
* Copyright (c) 2009, 2019 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;
}
}
}