< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties

Print this page

 745 compiler.err.illegal.start.of.expr=\
 746     illegal start of expression
 747 
 748 compiler.err.illegal.start.of.stmt=\
 749     illegal start of statement
 750 
 751 compiler.err.illegal.start.of.type=\
 752     illegal start of type
 753 
 754 compiler.err.illegal.parenthesized.expression=\
 755     illegal parenthesized expression
 756 
 757 compiler.err.illegal.unicode.esc=\
 758     illegal unicode escape
 759 
 760 # 0: symbol
 761 compiler.err.import.requires.canonical=\
 762     import requires canonical name for {0}
 763 
 764 compiler.err.improperly.formed.type.param.missing=\
 765     improperly formed type, some parameters are missing
 766 
 767 compiler.err.improperly.formed.type.inner.raw.param=\
 768     improperly formed type, type arguments given on a raw type
 769 
 770 # 0: type, 1: type
 771 compiler.err.incomparable.types=\
 772     incomparable types: {0} and {1}
 773 
 774 # 0: string
 775 compiler.err.int.number.too.large=\
 776     integer number too large
 777 
 778 compiler.err.intf.annotation.members.cant.have.params=\
 779     elements in annotation interface declarations cannot declare formal parameters
 780 
 781 # 0: symbol
 782 compiler.err.intf.annotation.cant.have.type.params=\
 783     annotation interface {0} cannot be generic
 784 
 785 compiler.err.intf.annotation.members.cant.have.type.params=\

2705     required: {1}\n\
2706     found:    {0}
2707 
2708 ## The following are all possible strings for the first argument ({0}) of the
2709 ## above string.
2710 compiler.misc.type.req.class=\
2711     class
2712 
2713 compiler.misc.type.req.class.array=\
2714     class or array
2715 
2716 compiler.misc.type.req.array.or.iterable=\
2717     array or java.lang.Iterable
2718 
2719 compiler.misc.type.req.ref=\
2720     reference
2721 
2722 compiler.misc.type.req.exact=\
2723     class or interface without bounds
2724 



2725 # 0: type
2726 compiler.misc.type.parameter=\
2727     type parameter {0}
2728 
2729 #####
2730 
2731 ## The following are all possible strings for the last argument of all those
2732 ## diagnostics whose key ends in ".1"
2733 
2734 # 0: type, 1: list of type
2735 compiler.misc.no.unique.maximal.instance.exists=\
2736     no unique maximal instance exists for type variable {0} with upper bounds {1}
2737 
2738 # 0: type, 1: list of type
2739 compiler.misc.no.unique.minimal.instance.exists=\
2740     no unique minimal instance exists for type variable {0} with lower bounds {1}
2741 
2742 # 0: type, 1: list of type
2743 compiler.misc.incompatible.upper.bounds=\
2744     inference variable {0} has incompatible upper bounds {1}

3716     --add-opens has no effect at compile time
3717 
3718 compiler.misc.locn.module_source_path=\
3719     module source path
3720 
3721 compiler.misc.locn.upgrade_module_path=\
3722     upgrade module path
3723 
3724 compiler.misc.locn.system_modules=\
3725     system modules
3726 
3727 compiler.misc.locn.module_path=\
3728     application module path
3729 
3730 compiler.misc.cant.resolve.modules=\
3731     cannot resolve modules
3732 
3733 compiler.misc.bad.requires.flag=\
3734     bad requires flag: {0}
3735 



3736 # 0: string
3737 compiler.err.invalid.module.specifier=\
3738     module specifier not allowed: {0}
3739 
3740 # 0: symbol
3741 compiler.warn.service.provided.but.not.exported.or.used=\
3742     service interface provided but not exported or used
3743 
3744 # 0: kind name, 1: symbol, 2: symbol
3745 compiler.warn.leaks.not.accessible=\
3746     {0} {1} in module {2} is not accessible to clients that require this module
3747 # 0: kind name, 1: symbol, 2: symbol
3748 compiler.warn.leaks.not.accessible.unexported=\
3749     {0} {1} in module {2} is not exported
3750 # 0: kind name, 1: symbol, 2: symbol
3751 compiler.warn.leaks.not.accessible.not.required.transitive=\
3752     {0} {1} in module {2} is not indirectly exported using ''requires transitive''
3753 # 0: kind name, 1: symbol, 2: symbol
3754 compiler.warn.leaks.not.accessible.unexported.qualified=\
3755     {0} {1} in module {2} may not be visible to all clients that require this module

4049 # 0: option name
4050 compiler.err.release.bootclasspath.conflict=\
4051     option {0} cannot be used together with --release
4052 
4053 # 0: string
4054 compiler.err.unsupported.release.version=\
4055     release version {0} not supported
4056 
4057 # 0: string
4058 compiler.err.file.not.found=\
4059     file not found: {0}
4060 
4061 # 0: string, 1: source
4062 compiler.err.preview.not.latest=\
4063     invalid source release {0} with --enable-preview\n\
4064     (preview language features are only supported for release {1})
4065 
4066 compiler.err.preview.without.source.or.release=\
4067     --enable-preview must be used with either -source or --release
4068 



















4069 # 0: symbol
4070 compiler.err.deconstruction.pattern.only.records=\
4071     deconstruction patterns can only be applied to records, {0} is not a record
4072 
4073 compiler.err.deconstruction.pattern.var.not.allowed=\
4074     deconstruction patterns can only be applied to records, var is not allowed
4075 
4076 # 0: list of type, 1: list of type
4077 compiler.err.incorrect.number.of.nested.patterns=\
4078     incorrect number of nested patterns\n\
4079     required: {0}\n\
4080     found: {1}
4081 
4082 # 0: kind name, 1: symbol
4083 compiler.warn.declared.using.preview=\
4084     {0} {1} is declared using a preview feature, which may be removed in a future release.
4085 
4086 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4087     attempt to synchronize on an instance of a value-based class
4088 

 745 compiler.err.illegal.start.of.expr=\
 746     illegal start of expression
 747 
 748 compiler.err.illegal.start.of.stmt=\
 749     illegal start of statement
 750 
 751 compiler.err.illegal.start.of.type=\
 752     illegal start of type
 753 
 754 compiler.err.illegal.parenthesized.expression=\
 755     illegal parenthesized expression
 756 
 757 compiler.err.illegal.unicode.esc=\
 758     illegal unicode escape
 759 
 760 # 0: symbol
 761 compiler.err.import.requires.canonical=\
 762     import requires canonical name for {0}
 763 
 764 compiler.err.improperly.formed.type.param.missing=\
 765     improperly formed type, some parameters are missing or misplaced
 766 
 767 compiler.err.improperly.formed.type.inner.raw.param=\
 768     improperly formed type, type arguments given on a raw type
 769 
 770 # 0: type, 1: type
 771 compiler.err.incomparable.types=\
 772     incomparable types: {0} and {1}
 773 
 774 # 0: string
 775 compiler.err.int.number.too.large=\
 776     integer number too large
 777 
 778 compiler.err.intf.annotation.members.cant.have.params=\
 779     elements in annotation interface declarations cannot declare formal parameters
 780 
 781 # 0: symbol
 782 compiler.err.intf.annotation.cant.have.type.params=\
 783     annotation interface {0} cannot be generic
 784 
 785 compiler.err.intf.annotation.members.cant.have.type.params=\

2705     required: {1}\n\
2706     found:    {0}
2707 
2708 ## The following are all possible strings for the first argument ({0}) of the
2709 ## above string.
2710 compiler.misc.type.req.class=\
2711     class
2712 
2713 compiler.misc.type.req.class.array=\
2714     class or array
2715 
2716 compiler.misc.type.req.array.or.iterable=\
2717     array or java.lang.Iterable
2718 
2719 compiler.misc.type.req.ref=\
2720     reference
2721 
2722 compiler.misc.type.req.exact=\
2723     class or interface without bounds
2724 
2725 compiler.misc.type.req.identity=\
2726     a type with identity
2727 
2728 # 0: type
2729 compiler.misc.type.parameter=\
2730     type parameter {0}
2731 
2732 #####
2733 
2734 ## The following are all possible strings for the last argument of all those
2735 ## diagnostics whose key ends in ".1"
2736 
2737 # 0: type, 1: list of type
2738 compiler.misc.no.unique.maximal.instance.exists=\
2739     no unique maximal instance exists for type variable {0} with upper bounds {1}
2740 
2741 # 0: type, 1: list of type
2742 compiler.misc.no.unique.minimal.instance.exists=\
2743     no unique minimal instance exists for type variable {0} with lower bounds {1}
2744 
2745 # 0: type, 1: list of type
2746 compiler.misc.incompatible.upper.bounds=\
2747     inference variable {0} has incompatible upper bounds {1}

3719     --add-opens has no effect at compile time
3720 
3721 compiler.misc.locn.module_source_path=\
3722     module source path
3723 
3724 compiler.misc.locn.upgrade_module_path=\
3725     upgrade module path
3726 
3727 compiler.misc.locn.system_modules=\
3728     system modules
3729 
3730 compiler.misc.locn.module_path=\
3731     application module path
3732 
3733 compiler.misc.cant.resolve.modules=\
3734     cannot resolve modules
3735 
3736 compiler.misc.bad.requires.flag=\
3737     bad requires flag: {0}
3738 
3739 compiler.misc.bad.access.flags=\
3740     bad access flags combination: {0}
3741 
3742 # 0: string
3743 compiler.err.invalid.module.specifier=\
3744     module specifier not allowed: {0}
3745 
3746 # 0: symbol
3747 compiler.warn.service.provided.but.not.exported.or.used=\
3748     service interface provided but not exported or used
3749 
3750 # 0: kind name, 1: symbol, 2: symbol
3751 compiler.warn.leaks.not.accessible=\
3752     {0} {1} in module {2} is not accessible to clients that require this module
3753 # 0: kind name, 1: symbol, 2: symbol
3754 compiler.warn.leaks.not.accessible.unexported=\
3755     {0} {1} in module {2} is not exported
3756 # 0: kind name, 1: symbol, 2: symbol
3757 compiler.warn.leaks.not.accessible.not.required.transitive=\
3758     {0} {1} in module {2} is not indirectly exported using ''requires transitive''
3759 # 0: kind name, 1: symbol, 2: symbol
3760 compiler.warn.leaks.not.accessible.unexported.qualified=\
3761     {0} {1} in module {2} may not be visible to all clients that require this module

4055 # 0: option name
4056 compiler.err.release.bootclasspath.conflict=\
4057     option {0} cannot be used together with --release
4058 
4059 # 0: string
4060 compiler.err.unsupported.release.version=\
4061     release version {0} not supported
4062 
4063 # 0: string
4064 compiler.err.file.not.found=\
4065     file not found: {0}
4066 
4067 # 0: string, 1: source
4068 compiler.err.preview.not.latest=\
4069     invalid source release {0} with --enable-preview\n\
4070     (preview language features are only supported for release {1})
4071 
4072 compiler.err.preview.without.source.or.release=\
4073     --enable-preview must be used with either -source or --release
4074 
4075 compiler.misc.feature.value.classes=\
4076     value classes
4077 
4078 # 0: type, 1: type
4079 compiler.err.value.type.has.identity.super.type=\
4080     The identity type {1} cannot be a supertype of the value type {0}
4081 
4082 # 0: symbol, 1: type
4083 compiler.err.concrete.supertype.for.value.class=\
4084     The concrete class {1} is not allowed to be a super class of the value class {0} either directly or indirectly
4085 
4086 # 0: symbol, 1: symbol, 2: type
4087 compiler.err.super.class.method.cannot.be.synchronized=\
4088     The method {0} in the super class {2} of the value class {1} is synchronized. This is disallowed
4089 
4090 # 0: symbol or name
4091 compiler.err.cant.ref.after.ctor.called=\
4092     cannot reference {0} after supertype constructor has been called
4093 
4094 # 0: symbol
4095 compiler.err.deconstruction.pattern.only.records=\
4096     deconstruction patterns can only be applied to records, {0} is not a record
4097 
4098 compiler.err.deconstruction.pattern.var.not.allowed=\
4099     deconstruction patterns can only be applied to records, var is not allowed
4100 
4101 # 0: list of type, 1: list of type
4102 compiler.err.incorrect.number.of.nested.patterns=\
4103     incorrect number of nested patterns\n\
4104     required: {0}\n\
4105     found: {1}
4106 
4107 # 0: kind name, 1: symbol
4108 compiler.warn.declared.using.preview=\
4109     {0} {1} is declared using a preview feature, which may be removed in a future release.
4110 
4111 compiler.warn.attempt.to.synchronize.on.instance.of.value.based.class=\
4112     attempt to synchronize on an instance of a value-based class
4113 
< prev index next >