[java-completion] IDEA-342465 support correctness for completion

- fix `implement` classes

GitOrigin-RevId: c20834fbc489aa4e1b0da2393e940e20c5a4439a
This commit is contained in:
Mikhail Pyltsin
2024-01-18 13:48:25 +01:00
committed by intellij-monorepo-bot
parent 1abd6af9b0
commit 3f15cce0a5

View File

@@ -106,8 +106,10 @@ implements.after.interface=No implements clause allowed for interface
extends.after.enum=No extends clause allowed for enum
permits.after.enum=No permits clause allowed for enum
class.must.be.abstract=Class ''{0}'' must either be declared abstract or implement abstract method ''{1}'' in ''{2}''
class.must.be.abstract.anchor=must either be declared abstract or implement abstract method
enum.constant.must.implement.method=Enum constant ''{0}'' must implement abstract method ''{1}'' in ''{2}''
class.must.implement.method=Class ''{0}'' must implement abstract method ''{1}'' in ''{2}''
class.must.implement.method.anchor=must implement abstract method
abstract.cannot.be.instantiated=''{0}'' is abstract; cannot be instantiated
duplicate.class.in.other.file=Duplicate class found in the file ''{0}''
duplicate.class=Duplicate class: ''{0}''