
org.codehaus.mevenide.hints.TestMavenHint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-hints Show documentation
Show all versions of maven-hints Show documentation
Providing Hints set for common mistakes and best practices
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.codehaus.mevenide.hints;
import com.sun.source.tree.Tree;
import com.sun.source.tree.Tree.Kind;
import com.sun.source.util.TreePath;
import java.util.Collections;
import java.util.EnumSet;
import java.util.List;
import java.util.Set;
import javax.lang.model.element.Element;
import org.netbeans.api.java.source.CompilationInfo;
import org.netbeans.modules.java.hints.spi.AbstractHint;
import org.netbeans.spi.editor.hints.ErrorDescription;
import org.netbeans.spi.editor.hints.ErrorDescriptionFactory;
import org.netbeans.spi.editor.hints.Fix;
/**
*
* @author Anuradha
*/
public class TestMavenHint extends AbstractHint {
private static final List NO_FIXES = Collections.emptyList();
private static final Set TREE_KINDS =
EnumSet.of(Tree.Kind.METHOD_INVOCATION);
public TestMavenHint() {
super(true, true, AbstractHint.HintSeverity.WARNING);
}
public Set getTreeKinds() {
return TREE_KINDS;
}
public List run(CompilationInfo info, TreePath treePath) {
Tree t = treePath.getLeaf();
Element el = info.getTrees().getElement(treePath);
String name = el.getSimpleName().toString();
if (name.equals("getOnlineEmbedder")) {
return Collections.singletonList(
ErrorDescriptionFactory.createErrorDescription(
getSeverity().toEditorSeverity(),
getDisplayName(),
NO_FIXES,
info.getFileObject(),
(int) info.getTrees().getSourcePositions().getStartPosition(info.getCompilationUnit(), t),
(int) info.getTrees().getSourcePositions().getEndPosition(info.getCompilationUnit(), t)));
}
return null;
}
public void cancel() {
// Does nothing
}
public String getId() {
return "MAVEN_TEST"; // NOI18N
}
public String getDisplayName() {
return "Maven test hint :using getOnlineEmbedder";
}
public String getDescription() {
return "You are using MavenEmbedder from EmbedderFactory :-)";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy