Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Eclipse 有一些 aptana 插件。如果项目中有一些错误,其中一个支持在项目图标中显示一个红色的 x。但我不确定是哪个插件做到了这一点。有人知道这件事吗?我知道我也可以在包或项目资源管理器视图中获取此信息,但导航器是我一直使用的。!
错误和警告指示器称为标记,是使用扩展点实现org.eclipse.core.resources.IMarker和声明的对象。org.eclipse.core.resources.markers
org.eclipse.core.resources.IMarker
org.eclipse.core.resources.markers
标记可以附加到资源上,这些IResource.findMarkers方法可以用来找出资源有什么标记。
IResource.findMarkers
视图通常使用“标签装饰器”将错误和警告覆盖添加到图标(org.eclipse.jdt.ui.ProblemsLabelDecorator例如)。
org.eclipse.jdt.ui.ProblemsLabelDecorator