Package | Description |
---|---|
org.netbeans.spi.editor.hints |
.
|
Modifier and Type | Method and Description |
---|---|
LazyFixList |
ErrorDescription.getFixes()
The list of fixes that will be associated with the error.
|
static LazyFixList |
ErrorDescriptionFactory.lazyListForDelegates(List<LazyFixList> delegates)
Concatenates several
LazyFixList s into one. |
static LazyFixList |
ErrorDescriptionFactory.lazyListForFixes(List<Fix> fixes)
Converts "normal" list of
Fix es into LazyFixList |
Modifier and Type | Method and Description |
---|---|
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(Severity severity,
String description,
LazyFixList fixes,
Document doc,
int lineNumber)
Create a new
ErrorDescription with the given parameters. |
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(Severity severity,
String description,
LazyFixList fixes,
Document doc,
Position start,
Position end)
Acquires read lock on the provided document to assure consistency
|
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(Severity severity,
String description,
LazyFixList fixes,
FileObject file,
int start,
int end)
Should be called inside document read lock to assure consistency
|
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(String id,
Severity severity,
String description,
CharSequence details,
LazyFixList fixes,
Document doc,
int lineNumber)
Create a new
ErrorDescription with the given parameters. |
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(String id,
Severity severity,
String description,
CharSequence details,
LazyFixList fixes,
Document doc,
Position start,
Position end)
Create a new
ErrorDescription with the given parameters. |
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(String id,
Severity severity,
String description,
CharSequence details,
LazyFixList fixes,
FileObject file,
int start,
int end)
Create a new
ErrorDescription with the given parameters. |
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(String id,
Severity severity,
String description,
CharSequence details,
LazyFixList fixes,
FileObject file,
PositionBounds errorBounds)
Create a new
ErrorDescription with the given parameters. |
static ErrorDescription |
ErrorDescriptionFactory.createErrorDescription(String id,
Severity severity,
String customType,
String description,
CharSequence details,
LazyFixList fixes,
FileObject file,
int[] starts,
int[] ends)
Create a new
ErrorDescription with the given parameters. |