1 19 20 package org.netbeans.modules.editor.errorstripe.privatespi; 21 22 import java.awt.Color ; 23 24 28 public interface Mark { 29 30 33 public static final int TYPE_ERROR_LIKE = 1; 34 35 public static final int TYPE_CARET = 2; 36 37 39 public static final int PRIORITY_DEFAULT = 1000; 40 41 47 public int getType(); 48 49 53 public Status getStatus(); 54 55 61 public int getPriority(); 62 63 68 public Color getEnhancedColor(); 69 70 75 public int[] getAssignedLines(); 76 77 82 public String getShortDescription(); 83 84 } 85 | Popular Tags |