1 19 package org.netbeans.spi.editor.hints; 20 21 import java.util.List ; 22 23 27 public interface ProviderDescription { 28 29 public String getKey(); 30 31 public String getDisplayName(); 32 33 public boolean getDefaultState(); 34 35 public List getSupportedErrorKeys(); 36 37 public String getErrorDisplayName(String key); 38 39 public Severity getErrorDefaultSeverity(String key); 40 41 } 42 | Popular Tags |