Reputation: 118
In the Eclipse Problems view, is there a way to add additional column (i.e Justify)?
My motive is to add additional problems marker attribute, in which I should be able to add a justification to the intentionally created problems which will be displayed in this additional column.
Upvotes: 2
Views: 175
Reputation: 52739
It looks like you can do this by using the org.eclipse.ui.ide.markerSupport
extension point to define a new markerField
, which will correspond to a new column in the Problems View.
Upvotes: 2