blob: 8dd8245d17fd460ce7f08fb645c1013f29871b23 [file] [log] [blame]
/**
* Copyright (c) 2009 Mia-Software.
* 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:
* Nicolas Guyomar (Mia-Software) - initial API and implementation
*/
package org.eclipse.gmt.modisco.java.queries.modifiers;
import org.eclipse.gmt.modisco.infra.query.core.exception.ModelQueryExecutionException;
import org.eclipse.gmt.modisco.infra.query.core.java.IJavaModelQuery;
import org.eclipse.gmt.modisco.infra.query.core.java.ParameterValueList;
import org.eclipse.gmt.modisco.java.Annotation;
import org.eclipse.gmt.modisco.java.BodyDeclaration;
public class IsGenerated implements IJavaModelQuery<BodyDeclaration, Boolean> {
public Boolean evaluate(final BodyDeclaration context, final ParameterValueList parameterValues)
throws ModelQueryExecutionException {
try {
if (context.getAnnotations() != null) {
for (Annotation annotation : context.getAnnotations()) {
if (annotation != null && annotation.getType() != null
&& annotation.getType().getType() != null) {
if ("Generated".equalsIgnoreCase(annotation.getType().getType().getName())) { //$NON-NLS-1$
return true;
}
}
}
}
return false;
} catch (Exception e) {
return false;
}
}
}