mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-14 07:37:00 +07:00
Also improve reporting, different messages for errors and warnings; reflective preview use reported by inspection Part of IDEA-365344 Create a new Java error highlighter with minimal dependencies (PSI only) GitOrigin-RevId: d7c85058aed3202d0599fc879a61c0fa56388fea
9 lines
404 B
Java
9 lines
404 B
Java
|
|
class A implements <error descr="com.mycom.FirstPreviewFeature is a preview API and is disabled by default">com.mycom.FirstPreviewFeature</error> {
|
|
public void f() {}
|
|
|
|
static class B implements <warning descr="com.mycom.FirstPreviewFeatureReflective is a reflective preview API and may be removed in a future release">com.mycom.FirstPreviewFeatureReflective</warning> {
|
|
public void f() {}
|
|
}
|
|
}
|