Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. public void createMarkerForResource(IResource resource, String message, String text, int line) throws Exception {
  2.     IMarker m = resource.createMarker(Resources.QUERY_MARKER);
  3.     m.setAttribute(IMarker.LINE_NUMBER, line);
  4.     m.setAttribute(IMarker.MESSAGE, message);
  5.     m.setAttribute(IMarker.TEXT, text);
  6.     m.setAttribute(IMarker.PRIORITY, IMarker.PRIORITY_HIGH);
  7.     m.setAttribute(IMarker.SEVERITY, IMarker.SEVERITY_WARNING);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement