Eclipse 大纲视图中的蓝色闪光图标是什么意思?

What does the blue flash icon in the Outline view in Eclipse mean?

在 Java 源文件的大纲视图中,方法旁边有这个图标:

编辑:在大纲视图中单击该方法时,该方法未在编辑器中获得焦点。

这是什么意思?此方法没有任何内容 "special",这是它的签名:

    private void scoreAddress(ScoreResult s, ScorePosting p, ScoreOrder o, SubCategoryAddress subCategory, PrecisionAddress precision, double score, int minLength) {
    }

我正在使用 Spring Tool Suite 3.7.2 (Eclipse Luna SR2 4.4.2)。我已经看过 at the docs 但找不到那个图标 - 所以它可能来自 Spring 扩展。

全图:

spark好像是AJDT 1.2 and means that this method is a pointcut引入的图标。

蓝色三角形表示这是默认(包可见)方法as per docs

您可以找到更多信息here