Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 1 | ############################################################################### |
Stephan Herrmann | 663c913 | 2020-10-08 23:36:09 +0200 | [diff] [blame^] | 2 | # Copyright (c) 2000, 2020 IBM Corporation and others. |
Stephan Herrmann | aa0c80c | 2018-09-08 22:11:53 +0200 | [diff] [blame] | 3 | # |
| 4 | # This program and the accompanying materials |
| 5 | # are made available under the terms of the Eclipse Public License 2.0 |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 6 | # which accompanies this distribution, and is available at |
Stephan Herrmann | aa0c80c | 2018-09-08 22:11:53 +0200 | [diff] [blame] | 7 | # https://www.eclipse.org/legal/epl-2.0/ |
| 8 | # |
| 9 | # SPDX-License-Identifier: EPL-2.0 |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 10 | # |
| 11 | # Contributors: |
| 12 | # IBM Corporation - initial API and implementation |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 13 | # Andy Clement (GoPivotal, Inc) aclement@gopivotal.com - Contributions for |
| 14 | # Bug 383624 - [1.8][compiler] Revive code generation support for type annotations (from Olivier's work) |
Stephan Herrmann | 6479194 | 2013-12-28 21:28:24 +0100 | [diff] [blame] | 15 | # Jesper Steen Moeller - Contribution for |
| 16 | # Bug 406973 - [compiler] Parse MethodParameters attribute |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 17 | ############################################################################### |
| 18 | |
| 19 | ### JavaModel messages. |
| 20 | |
| 21 | ### hierarchy |
| 22 | hierarchy_nullProject = Project argument cannot be null |
| 23 | hierarchy_nullRegion = Region cannot be null |
| 24 | hierarchy_nullFocusType = Type focus cannot be null |
| 25 | hierarchy_creating = Creating type hierarchy... |
| 26 | hierarchy_creatingOnType = Creating type hierarchy on {0}... |
| 27 | |
| 28 | ### java element |
| 29 | element_doesNotExist = {0} does not exist |
| 30 | element_notOnClasspath = {0} is not on its project''s build path |
| 31 | element_invalidClassFileName = {0} is not a valid class file name |
| 32 | element_reconciling = Reconciling... |
| 33 | element_attachingSource = Attaching source... |
| 34 | element_invalidResourceForProject = Illegal argument - must be one of IProject, IFolder, or IFile |
| 35 | element_nullName = Name cannot be null |
| 36 | element_nullType = Type cannot be null |
| 37 | element_illegalParent = Illegal parent argument |
Stephan Herrmann | 92f5266 | 2017-10-14 20:44:25 +0200 | [diff] [blame] | 38 | element_moduleInfoNotSupported=module-info.class is not supported by method IPackageFragment.getClassFile(String). |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 39 | |
| 40 | ### java model operations |
| 41 | operation_needElements = Operation requires one or more elements |
| 42 | operation_needName = Operation requires a name |
| 43 | operation_needPath = Operation requires a path |
| 44 | operation_needAbsolutePath = Operation requires an absolute path. Relative path specified was: ''{0}'' |
| 45 | operation_needString = Operation requires a String. |
| 46 | operation_notSupported = Operation not supported for specified element type(s): |
| 47 | operation_cancelled = Operation cancelled |
| 48 | operation_nullContainer = Container cannot be null |
| 49 | operation_nullName = Name cannot be null |
| 50 | operation_copyElementProgress = Copying elements... |
| 51 | operation_moveElementProgress = Moving elements... |
| 52 | operation_renameElementProgress = Renaming elements... |
| 53 | operation_copyResourceProgress = Copying resources... |
| 54 | operation_moveResourceProgress = Moving resources... |
| 55 | operation_renameResourceProgress = Renaming resources... |
| 56 | operation_createUnitProgress = Creating a compilation unit... |
| 57 | operation_createFieldProgress = Creating a field... |
| 58 | operation_createImportsProgress = Creating imports... |
| 59 | operation_createInitializerProgress = Creating an initializer... |
| 60 | operation_createMethodProgress = Creating a method... |
| 61 | operation_createPackageProgress = Creating a package declaration... |
| 62 | operation_createPackageFragmentProgress = Creating package fragment(s)... |
| 63 | operation_createTypeProgress = Creating a type... |
| 64 | operation_deleteElementProgress = Deleting elements... |
| 65 | operation_deleteResourceProgress = Deleting resources... |
| 66 | operation_cannotRenameDefaultPackage = Default package cannot be renamed |
| 67 | operation_pathOutsideProject = Path ''{0}'' must denote location inside project ''{1}'' |
| 68 | operation_sortelements = Sorting elements... |
| 69 | |
| 70 | ### working copy |
| 71 | workingCopy_commit = Committing working copy... |
| 72 | |
| 73 | ### build status messages |
| 74 | build_preparingBuild = Preparing to build {0} |
| 75 | build_readStateProgress = Reading saved build state for project {0} |
| 76 | build_saveStateProgress = Saving build state for project {0} |
| 77 | build_saveStateComplete = Saved in {0} ms |
| 78 | build_readingDelta = Reading resource change information for {0} |
| 79 | build_analyzingDeltas = Analyzing deltas |
| 80 | build_analyzingSources = Analyzing sources |
| 81 | build_cleaningOutput = Cleaning output folder for {0} |
| 82 | build_copyingResources = Copying resources to the output folder |
| 83 | build_compiling = Compiling {0} |
| 84 | build_foundHeader = Found |
| 85 | build_fixedHeader = Fixed |
| 86 | build_oneError = 1 error |
| 87 | build_oneWarning = 1 warning |
| 88 | build_multipleErrors = {0} errors |
| 89 | build_multipleWarnings = {0} warnings |
| 90 | build_done = Build done |
| 91 | |
| 92 | ### build errors |
| 93 | build_wrongFileFormat = Wrong file format |
| 94 | build_cannotSaveState = Error saving last build state for project {0} |
| 95 | build_cannotSaveStates = Error saving build states |
| 96 | build_initializationError = Builder initialization error |
| 97 | build_serializationError = Builder serialization error |
| 98 | |
| 99 | ### build inconsistencies |
| 100 | build_classFileCollision = Class file collision: {0} |
| 101 | build_duplicateClassFile = The type {0} is already defined |
| 102 | build_duplicateResource = The resource is a duplicate of {0} and was not copied to the output folder |
| 103 | build_inconsistentClassFile = A class file was not written. The project may be inconsistent, if so try refreshing this project and building it |
| 104 | build_inconsistentProject = The project was not built due to "{0}". Fix the problem, then try refreshing this project and building it since it may be inconsistent |
| 105 | build_incompleteClassPath = The project was not built since its build path is incomplete. Cannot find the class file for {0}. Fix the build path then try building this project |
Stephan Herrmann | 8a5e933 | 2019-05-23 18:39:35 +0200 | [diff] [blame] | 106 | build_errorOnModuleDirective = The project was not built since its build path has a problem: {0}. Fix the build path then try building this project |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 107 | build_missingSourceFile = The project was not built since the source file {0} could not be read |
| 108 | build_prereqProjectHasClasspathProblems = The project was not built since it depends on {0}, which has build path errors |
| 109 | build_prereqProjectMustBeRebuilt = The project cannot be built until its prerequisite {0} is built. Cleaning and building all projects is recommended |
| 110 | build_abortDueToClasspathProblems = The project cannot be built until build path errors are resolved |
| 111 | |
| 112 | ### status |
| 113 | status_cannotUseDeviceOnPath = Operation requires a path with no device. Path specified was: {0} |
| 114 | status_coreException = Core exception |
| 115 | status_defaultPackageReadOnly = Default package is read-only |
| 116 | status_evaluationError = Evaluation error: {0} |
| 117 | status_JDOMError = JDOM error |
| 118 | status_IOException = I/O exception |
| 119 | status_indexOutOfBounds = Index out of bounds |
| 120 | status_invalidContents = Invalid contents specified |
| 121 | status_invalidDestination = Invalid destination: ''{0}'' |
| 122 | status_invalidName = Invalid name specified: {0} |
| 123 | status_invalidPackage = Invalid package: {0} |
| 124 | status_invalidPath = Invalid path: ''{0}'' |
| 125 | status_invalidProject = Invalid project: {0} |
| 126 | status_invalidResource = Invalid resource: {0} |
| 127 | status_invalidResourceType = Invalid resource type for {0} |
| 128 | status_invalidSibling = Invalid sibling: {0} |
| 129 | status_nameCollision = {0} already exists in target |
| 130 | status_noLocalContents = Cannot find local contents for resource: {0} |
| 131 | status_OK = OK |
| 132 | status_readOnly = {0} is read-only |
| 133 | status_targetException = Target exception |
| 134 | status_updateConflict = Update conflict |
| 135 | status_cannot_retrieve_attached_javadoc = Cannot retrieve the attached javadoc for {0}{1} |
| 136 | status_unknown_javadoc_format = Unknown javadoc format for {0} |
Stephan Herrmann | bb25a05 | 2011-01-27 11:59:20 +0000 | [diff] [blame] | 137 | status_timeout_javadoc = Timed out while retrieving the attached javadoc for {0}{1} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 138 | |
| 139 | ### classpath |
| 140 | classpath_buildPath = Build path |
| 141 | classpath_cannotNestEntryInEntry = Cannot nest ''{0}'' inside ''{1}''. To enable the nesting exclude ''{2}'' from ''{1}'' |
| 142 | classpath_cannotNestEntryInEntryNoExclusion= Cannot nest ''{0}'' inside ''{1}''. To allow the nesting enable use of exclusion patterns in the preferences of project ''{1}'' and exclude ''{2}'' from ''{1}'' |
| 143 | classpath_cannotNestEntryInLibrary = Cannot nest ''{0}'' inside library ''{1}'' |
| 144 | classpath_cannotNestEntryInOutput = Cannot nest ''{0}'' inside output folder ''{1}'' |
| 145 | classpath_cannotNestOutputInEntry = Cannot nest output folder ''{0}'' inside ''{1}'' |
| 146 | classpath_cannotNestOutputInOutput = Cannot nest output folder ''{0}'' inside output folder ''{1}'' |
| 147 | classpath_cannotReadClasspathFile = Unable to read ''.classpath'' file of project ''{0}'' |
| 148 | classpath_cannotReferToItself = Project ''{0}'' cannot reference itself |
| 149 | classpath_cannotUseDistinctSourceFolderAsOutput = Source folder ''{0}'' in project ''{2}'' cannot output to distinct source folder ''{1}'' |
| 150 | classpath_cannotUseLibraryAsOutput = Source folder ''{0}'' in project ''{2}'' cannot output to library ''{1}'' |
| 151 | classpath_closedProject = Required project ''{0}'' needs to be open |
| 152 | classpath_couldNotWriteClasspathFile = Could not write ''.classpath'' file of project ''{0}'': {1} |
Stephan Herrmann | 5f5a839 | 2019-10-16 20:36:39 +0200 | [diff] [blame] | 153 | classpath_cycle = One or more cycles were detected in the build path of project ''{0}''. The paths towards the cycle and cycle are:\n{1} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 154 | classpath_duplicateEntryPath = Build path contains duplicate entry: ''{0}'' for project ''{1}'' |
| 155 | classpath_illegalContainerPath = Illegal classpath container path: ''{0}'' in project ''{1}'', must have at least one segment (containerID+hints) |
| 156 | classpath_illegalEntryInClasspathFile = Illegal entry in ''.classpath'' of project ''{0}'' file: {1} |
| 157 | classpath_illegalLibraryPath = Illegal path for required library: ''{0}'' in project ''{1}'' |
| 158 | classpath_illegalLibraryPathInContainer = Illegal path for required library: ''{0}'' in the {1} |
| 159 | classpath_illegalLibraryArchive = Illegal type of archive for required library: ''{0}'' in project ''{1}'' |
Stephan Herrmann | e880bb6 | 2010-11-06 15:10:25 +0000 | [diff] [blame] | 160 | classpath_archiveReadError = Archive for required library: ''{0}'' in project ''{1}'' cannot be read or is not a valid ZIP file |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 161 | classpath_illegalExternalFolder = Required library cannot denote external folder: ''{0}'' for project ''{1}'' |
| 162 | classpath_illegalExternalFolderInContainer = Required library cannot denote external folder: ''{0}'' in the {1} |
| 163 | classpath_illegalProjectPath = Illegal path for required project: ''{0}'' in project ''{1}'' |
| 164 | classpath_illegalSourceFolderPath = Illegal path for required source folder: ''{0}'' in project ''{1}'' |
| 165 | classpath_illegalVariablePath = Illegal classpath variable path: ''{0}'' in project ''{1}'', must have at least one segment |
| 166 | classpath_invalidClasspathInClasspathFile = Invalid build path in ''.classpath'' file of project ''{0}'': {1} |
| 167 | classpath_invalidContainer = Invalid classpath container: ''{0}'' in project ''{1}'' |
| 168 | classpath_mustEndWithSlash = End exclusion filter ''{0}'' with / to fully exclude ''{1}'' |
| 169 | classpath_unboundContainerPath = Unbound classpath container: ''{0}'' in project ''{1}'' |
| 170 | classpath_unboundLibrary = Project ''{1}'' is missing required library: ''{0}'' |
| 171 | classpath_userLibraryInfo = user library ''{0}'' |
| 172 | classpath_containerInfo = container ''{0}'' |
| 173 | classpath_unboundLibraryInContainer = The {1} references non existing library ''{0}'' |
| 174 | classpath_unboundProject = Project ''{1}'' is missing required Java project: ''{0}'' |
| 175 | classpath_settingOutputLocationProgress = Setting output location for: ''{0}'' |
| 176 | classpath_settingProgress = Setting classpath for: {0} |
| 177 | classpath_unboundSourceAttachment = Invalid source attachment: ''{0}'' for required library ''{1}'' in project ''{2}'' |
| 178 | classpath_unboundSourceAttachmentInContainedLibrary = Invalid source attachment: ''{0}'' for required library ''{1}'' in the {2} |
| 179 | classpath_unboundSourceFolder = Project ''{1}'' is missing required source folder: ''{0}'' |
| 180 | classpath_unboundVariablePath = Unbound classpath variable: ''{0}'' in project ''{1}'' |
| 181 | classpath_unknownKind = Unknown kind: ''{0}'' |
| 182 | classpath_xmlFormatError = XML format error in ''.classpath'' file of project ''{0}'': {1} |
| 183 | classpath_disabledInclusionExclusionPatterns = Inclusion or exclusion patterns are disabled in project ''{1}'', cannot selectively include or exclude from entry: ''{0}'' |
| 184 | classpath_disabledMultipleOutputLocations = Multiple output locations are disabled in project ''{1}'', cannot associate entry: ''{0}'' with a specific output |
| 185 | classpath_incompatibleLibraryJDKLevel = Incompatible .class files version in required binaries. Project ''{0}'' is targeting a {1} runtime, but is compiled against ''{2}'' which requires a {3} runtime |
| 186 | classpath_incompatibleLibraryJDKLevelInContainer = Incompatible .class files version in required binaries. Project ''{0}'' is targeting a {1} runtime, but is compiled against ''{2}'' (from the {3}) which requires a {4} runtime |
| 187 | classpath_duplicateEntryExtraAttribute = Duplicate extra attribute: ''{0}'' in classpath entry ''{1}'' for project ''{2}'' |
| 188 | classpath_deprecated_variable = Classpath variable ''{0}'' in project ''{1}'' is deprecated: {2} |
Stephan Herrmann | d1a89d7 | 2015-12-08 19:38:48 +0100 | [diff] [blame] | 189 | classpath_invalidExternalAnnotationPath = Invalid external annotation path: ''{0}'' in project ''{1}'', for classpath entry ''{2}'' |
Stephan Herrmann | 3442b52 | 2018-01-25 21:18:41 +0100 | [diff] [blame] | 190 | classpath_testSourceRequiresSeparateOutputFolder=Test source folder ''{0}'' in project ''{1}'' must have a separate output folder |
| 191 | classpath_testOutputFolderMustBeSeparateFromMainOutputFolders=Test source folder ''{0}'' in project ''{1}'' must have an output folder that is not also used for main sources |
Stephan Herrmann | 7bc42c0 | 2018-11-04 17:14:47 +0100 | [diff] [blame] | 192 | classpath_main_only_project_depends_on_test_only_project=Project has only main sources but depends on project ''{0}'' which has only test sources. |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 193 | |
| 194 | ### miscellaneous |
| 195 | buffer_closed=Buffer is closed |
| 196 | file_notFound = File not found: ''{0}'' |
| 197 | file_badFormat = Bad format |
| 198 | path_nullPath = Path cannot be null |
| 199 | path_mustBeAbsolute = Path must be absolute |
| 200 | cache_invalidLoadFactor = Incorrect load factor |
| 201 | savedState_jobName = Processing Java changes since last activation |
Stephan Herrmann | 6c186a4 | 2010-04-27 23:21:41 +0000 | [diff] [blame] | 202 | refreshing_external_folders = Refreshing external folders |
Stephan Herrmann | 075533e | 2015-04-28 17:54:14 +0200 | [diff] [blame] | 203 | synchronizing_projects_job = Synchronizing projects |
Stephan Herrmann | fd40c0e | 2017-01-27 23:32:20 +0100 | [diff] [blame] | 204 | internal_error=Unexpected internal error |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 205 | |
| 206 | ## java model initialization |
| 207 | javamodel_initialization = Initializing Java tooling |
| 208 | javamodel_initializing_delta_state= Initializing delta state |
| 209 | javamodel_configuring_searchengine=Configuring search engine |
| 210 | javamodel_configuring_classpath_containers=Configuring classpath containers |
| 211 | javamodel_getting_build_state_number=Getting build state version number |
| 212 | javamodel_configuring=Configuring {0} |
| 213 | javamodel_building_after_upgrade=Triggering build after upgrade |
| 214 | javamodel_refreshing_external_jars=Refreshing external archives |
| 215 | javamodel_resetting_source_attachment_properties=Resetting source attachment properties |
| 216 | |
| 217 | ### java conventions |
| 218 | convention_unit_nullName = Compilation unit name must not be null |
| 219 | convention_unit_notJavaName = Compilation unit name must end with .java, or one of the registered Java-like extensions |
| 220 | convention_classFile_nullName = .class file name must not be null |
| 221 | convention_classFile_notClassFileName = .class file name must end with .class |
| 222 | convention_illegalIdentifier = ''{0}'' is not a valid Java identifier |
| 223 | convention_import_nullImport = An import declaration must not be null |
| 224 | convention_import_unqualifiedImport = An import declaration must not end with an unqualified * |
| 225 | convention_type_nullName = A Java type name must not be null |
| 226 | convention_type_nameWithBlanks = A Java type name must not start or end with a blank |
| 227 | convention_type_dollarName = By convention, Java type names usually don't contain the $ character |
| 228 | convention_type_lowercaseName = By convention, Java type names usually start with an uppercase letter |
| 229 | convention_type_invalidName = The type name ''{0}'' is not a valid identifier |
| 230 | convention_package_nullName = A package name must not be null |
| 231 | convention_package_emptyName = A package name must not be empty |
| 232 | convention_package_dotName = A package name cannot start or end with a dot |
| 233 | convention_package_nameWithBlanks = A package name must not start or end with a blank |
| 234 | convention_package_consecutiveDotsName = A package name must not contain two consecutive dots |
| 235 | convention_package_uppercaseName = By convention, package names usually start with a lowercase letter |
Stephan Herrmann | 92f5266 | 2017-10-14 20:44:25 +0200 | [diff] [blame] | 236 | convention_module_nullName = A module name must not be null |
| 237 | convention_module_emptyName = A module name must not be empty |
| 238 | convention_module_dotName = A module name cannot start or end with a dot |
| 239 | convention_module_nameWithBlanks = A module name must not start or end with a blank |
| 240 | convention_module_consecutiveDotsName = A module name must not contain consecutive dots |
| 241 | convention_module_uppercaseName = By convention, module names usually start with a lowercase letter |
Stephan Herrmann | 92f5266 | 2017-10-14 20:44:25 +0200 | [diff] [blame] | 242 | convention_module_javaName = 'java' is reserved for system modules |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 243 | |
| 244 | ### DOM |
| 245 | dom_cannotDetail = Unable to generate detailed source indexes |
| 246 | dom_nullTypeParameter = Cannot add parameter with null type |
| 247 | dom_nullNameParameter = Cannot add parameter with null name |
| 248 | dom_nullReturnType = Return type cannot be null |
| 249 | dom_nullExceptionType = Cannot add null exception |
| 250 | dom_mismatchArgNamesAndTypes = Types and names must have identical length |
| 251 | dom_addNullChild = Attempt to add null child |
| 252 | dom_addIncompatibleChild = Attempt to add child of incompatible type |
| 253 | dom_addChildWithParent = Attempt to add child that is already parented |
| 254 | dom_unableAddChild = Attempt to add child to node that cannot have children |
| 255 | dom_addAncestorAsChild = Attempt to add ancestor as child |
| 256 | dom_addNullSibling = Attempt to insert null sibling |
| 257 | dom_addSiblingBeforeRoot = Attempt to insert sibling before root node |
| 258 | dom_addIncompatibleSibling = Attempt to insert sibling of incompatible type |
| 259 | dom_addSiblingWithParent = Attempt to insert sibling that is already parented |
| 260 | dom_addAncestorAsSibling = Attempt to insert ancestor as sibling |
| 261 | dom_addNullInterface = Cannot add null interface |
| 262 | dom_nullInterfaces = Illegal to set super interfaces to null |
| 263 | |
| 264 | ### import rewrite |
| 265 | importRewrite_processDescription = Updating imports |
| 266 | |
| 267 | ### correction |
| 268 | correction_nullRequestor = Requestor cannot be null |
| 269 | correction_nullUnit = Compilation unit cannot be null |
| 270 | |
| 271 | ### Eclipse Java Core Search messages. |
| 272 | |
| 273 | engine_searching = Searching... |
| 274 | engine_searching_indexing = Looking through {0} indexes... |
| 275 | engine_searching_matching = Locating {0} matches... |
| 276 | exception_wrongFormat = Wrong format |
| 277 | process_name = Java indexing |
| 278 | jobmanager_filesToIndex = {1} files to index ({0}) |
| 279 | jobmanager_indexing = Java indexing... |
| 280 | |
| 281 | ### Disassembler messages |
| 282 | |
| 283 | ### disassembler |
| 284 | disassembler_description = Default classfile disassembler |
| 285 | disassembler_opentypedeclaration =\ '{' |
| 286 | disassembler_closetypedeclaration = } |
| 287 | disassembler_parametername = arg |
Stephan Herrmann | 9c22239 | 2014-03-29 14:28:16 +0100 | [diff] [blame] | 288 | disassembler_anonymousparametername = <anonymous> |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 289 | disassembler_localvariablename = local_{0} |
| 290 | disassembler_endofmethodheader = ; |
| 291 | disassembler_begincommentline = //\ |
| 292 | disassembler_fieldhasconstant =\ =\ |
| 293 | disassembler_endoffieldheader = ; |
| 294 | disassembler_sourceattributeheader = Compiled from\ |
| 295 | disassembler_enclosingmethodheader = Enclosing Method: |
| 296 | disassembler_exceptiontableheader = Exception Table: |
| 297 | disassembler_linenumberattributeheader = Line numbers: |
Stephan Herrmann | 6479194 | 2013-12-28 21:28:24 +0100 | [diff] [blame] | 298 | disassembler_methodparametersheader = Method Parameters: |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 299 | disassembler_localvariabletableattributeheader = Local variable table: |
| 300 | disassembler_localvariabletypetableattributeheader = Local variable type table: |
| 301 | disassembler_arraydimensions = [] |
Stephan Herrmann | a441c70 | 2018-10-14 17:51:04 +0200 | [diff] [blame] | 302 | disassembler_nesthost = Nest Host: |
| 303 | disassembler_nestmembers = Nest Members: |
Stephan Herrmann | f59da28 | 2020-04-10 18:10:58 +0200 | [diff] [blame] | 304 | disassembler_record = Record: |
Stephan Herrmann | 663c913 | 2020-10-08 23:36:09 +0200 | [diff] [blame^] | 305 | disassembler_permittedsubclasses = PermittedSubclasses: |
Stephan Herrmann | f59da28 | 2020-04-10 18:10:58 +0200 | [diff] [blame] | 306 | disassembler_components = Components: |
| 307 | disassembler_endofcomponent = ; |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 308 | disassembler_innerattributesheader = Inner classes: |
| 309 | disassembler_inner_class_info_name = inner class info: |
| 310 | disassembler_outer_class_info_name = outer class info: |
| 311 | disassembler_inner_name = inner name: |
| 312 | disassembler_inner_accessflags = accessflags:\ |
| 313 | disassembler_genericattributeheader = Attribute: {0} Length: {1} |
| 314 | disassembler_stackmaptableattributeheader = Stack map table: number of frames {0} |
| 315 | disassembler_stackmapattributeheader = Stack map : number of frames {0} |
| 316 | disassembler_signatureattributeheader = // Signature: {0} |
Stephan Herrmann | 6dcbb38 | 2011-10-25 16:30:31 +0000 | [diff] [blame] | 317 | disassembler_bootstrapmethodattributesheader = Bootstrap methods: |
Stephan Herrmann | ac2aba3 | 2014-05-01 14:58:19 +0200 | [diff] [blame] | 318 | disassembler_bootstrapmethodentry = {0} : # {1} {2}\n\tMethod arguments:\n\t\t{3} |
| 319 | disassembler_bootstrapmethodentry_argument = #{0} {1} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 320 | disassembler_indentation = \ |
| 321 | disassembler_constantpoolindex =\ # |
| 322 | disassembler_space = \ |
| 323 | disassembler_comma = , |
| 324 | disassembler_openinnerclassentry = [ |
| 325 | disassembler_closeinnerclassentry = ] |
| 326 | disassembler_deprecated =\ (deprecated) |
| 327 | disassembler_constantpoolheader = Constant pool: |
| 328 | disassembler_constantpool_class = constant #{0} class: #{1} {2} |
| 329 | disassembler_constantpool_double = constant #{0} double: {1} |
| 330 | disassembler_constantpool_float = constant #{0} float: {1} |
| 331 | disassembler_constantpool_integer = constant #{0} integer: {1} |
| 332 | disassembler_constantpool_long = constant #{0} long: {1} |
| 333 | disassembler_constantpool_string = constant #{0} string: #{1} "{2}" |
| 334 | disassembler_constantpool_fieldref = constant #{0} field_ref: #{1}.#{2} {3}.{4} {5} |
| 335 | disassembler_constantpool_interfacemethodref = constant #{0} interface_method_ref: #{1}.#{2} {3}.{4} {5} |
| 336 | disassembler_constantpool_methodref = constant #{0} method_ref: #{1}.#{2} {3}.{4} {5} |
| 337 | disassembler_constantpool_name_and_type = constant #{0} name_and_type: #{1}.#{2} {3} {4} |
| 338 | disassembler_constantpool_utf8 = constant #{0} utf8: "{1}" |
Stephan Herrmann | 6dcbb38 | 2011-10-25 16:30:31 +0000 | [diff] [blame] | 339 | disassembler_constantpool_methodhandle = constant #{0} method handle: {1} #{2} |
| 340 | disassembler_constantpool_methodtype = constant #{0} method type: #{1} {2} |
| 341 | disassembler_constantpool_invokedynamic = constant #{0} invoke dynamic: #{1} #{2} {3} {4} |
Stephan Herrmann | a441c70 | 2018-10-14 17:51:04 +0200 | [diff] [blame] | 342 | disassembler_constantpool_dynamic = constant #{0} dynamic: #{1} #{2} {3} {4} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 343 | disassembler_annotationdefaultheader = Annotation Default:\ |
| 344 | disassembler_annotationdefaultvalue= {0} (constant type) |
| 345 | disassembler_annotationenumvalue = {2}.{3}(enum type #{0}.#{1}) |
| 346 | disassembler_annotationclassvalue = {1} (#{0} class type) |
| 347 | disassembler_annotationannotationvalue = annotation value = |
| 348 | disassembler_annotationarrayvaluestart = [ |
| 349 | disassembler_annotationarrayvalueend = ] |
| 350 | disassembler_annotationentrystart = #{0} @{1}( |
| 351 | disassembler_annotationentryend = ) |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 352 | # jsr308 (next two) |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 353 | disassembler_extendedannotationentrystart=#{0} @{1}( |
| 354 | disassembler_extendedannotationentryend= ) |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 355 | disassembler_annotationcomponent = #{0} {1}= |
| 356 | disassembler_runtimevisibleannotationsattributeheader= RuntimeVisibleAnnotations:\ |
| 357 | disassembler_runtimeinvisibleannotationsattributeheader= RuntimeInvisibleAnnotations:\ |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 358 | # jsr308 (next two) |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 359 | disassembler_runtimevisibletypeannotationsattributeheader= RuntimeVisibleTypeAnnotations:\ |
| 360 | disassembler_runtimeinvisibletypeannotationsattributeheader= RuntimeInvisibleTypeAnnotations:\ |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 361 | disassembler_runtimevisibleparameterannotationsattributeheader= RuntimeVisibleParameterAnnotations:\ |
| 362 | disassembler_runtimeinvisibleparameterannotationsattributeheader= RuntimeInvisibleParameterAnnotations:\ |
| 363 | disassembler_parameterannotationentrystart=Number of annotations for parameter {0}: {1} |
| 364 | disassembler_frame_same_locals_1_stack_item_extended=[pc: {0}, same_locals_1_stack_item_extended, stack: {1}] |
| 365 | disassembler_frame_chop=[pc: {0}, chop {1} local(s)] |
| 366 | disassembler_frame_same_frame_extended=[pc: {0}, same_extended] |
| 367 | disassembler_frame_append=[pc: {0}, append: {1}] |
Stephan Herrmann | 6dcbb38 | 2011-10-25 16:30:31 +0000 | [diff] [blame] | 368 | disassembler_method_type_ref_getfield = getfield ({0}) |
| 369 | disassembler_method_type_ref_putfield = putfield ({0}) |
| 370 | disassembler_method_type_ref_getstatic = getstatic ({0}) |
| 371 | disassembler_method_type_ref_putstatic = putstatic ({0}) |
| 372 | disassembler_method_type_ref_invokestatic = invokestatic ({0}) |
| 373 | disassembler_method_type_ref_invokevirtual = invokevirtual ({0}) |
| 374 | disassembler_method_type_ref_invokeinterface = invokeinterface ({0}) |
| 375 | disassembler_method_type_ref_invokespecial = invokespecial ({0}) |
| 376 | disassembler_method_type_ref_newinvokespecial = newinvokespecial ({0}) |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 377 | # {0} = offset delta |
| 378 | # {1} = number of locals |
| 379 | # {2} = locals |
| 380 | # {3} = number of stack items |
| 381 | # {4} = stack items |
| 382 | # {5} = line separator + tabs |
| 383 | disassembler_frame_full_frame=[pc: {0}, full, stack: {4}, locals: {2}] |
| 384 | disassembler_frame_same_frame=[pc: {0}, same] |
| 385 | disassembler_frame_same_locals_1_stack_item=[pc: {0}, same_locals_1_stack_item, stack: {1}] |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 386 | # jsr308 |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 387 | disassembler_extendedannotation_targetType=target type = 0x{0} {1} |
| 388 | disassembler_extendedannotation_classextendsimplements=type index = {0} |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 389 | disassembler_extendedannotation_typepath=location = {0} |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 390 | disassembler_extendedannotation_method_parameter=method parameter index = {0} |
| 391 | disassembler_extendedannotation_offset=offset = {0} |
| 392 | disassembler_extendedannotation_throws=throws index = {0} |
| 393 | disassembler_extendedannotation_type_argument=type argument index = {0} |
| 394 | disassembler_extendedannotation_type_parameter=type parameter index = {0} |
| 395 | disassembler_extendedannotation_type_parameter_with_bound=type parameter index = {0} type parameter bound index = {1} |
| 396 | disassembler_extendedannotation_wildcardlocationtype=wildcard location type = 0x{0} {1} |
| 397 | disassembler_extendedannotation_wildcardlocations=wildcard locations = {0} |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 398 | disassembler_extendedannotation_exception_table_index=exception table index = {0} |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 399 | disassembler_localvariabletargetheader=local variable entries: |
Stephan Herrmann | c8a7ab7 | 2013-12-25 22:23:58 +0100 | [diff] [blame] | 400 | disassembler_extendedannotation_typepath_array=ARRAY |
| 401 | disassembler_extendedannotation_typepath_innertype=INNER_TYPE |
| 402 | disassembler_extendedannotation_typepath_wildcard=WILDCARD |
| 403 | disassembler_extendedannotation_typepath_typeargument=TYPE_ARGUMENT({0}) |
Stephan Herrmann | 92f5266 | 2017-10-14 20:44:25 +0200 | [diff] [blame] | 404 | disassembler_module_version=// Version: {0} |
| 405 | disassembler_module_version_none=<none> |
| 406 | disassembler_modulepackagesattributeheader = Module packages: |
| 407 | disassembler_modulemainclassattributeheader=Module main class: |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 408 | |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 409 | ### classfileformat decoding |
| 410 | classfileformat_versiondetails =\ (version {0} : {1}.{2}, {3}) |
| 411 | classfileformat_methoddescriptor = // Method descriptor #{0} {1} |
| 412 | classfileformat_fieldddescriptor = // Field descriptor #{0} {1} |
| 413 | classfileformat_stacksAndLocals= // Stack: {0}, Locals: {1} |
| 414 | classfileformat_superflagisnotset = no super bit |
| 415 | classfileformat_superflagisset = super bit |
| 416 | classfileformat_clinitname = '{'} |
| 417 | classformat_classformatexception = Class Format Exception |
| 418 | classfileformat_versionUnknown = unknown |
Stephan Herrmann | f59da28 | 2020-04-10 18:10:58 +0200 | [diff] [blame] | 419 | classfileformat_componentdescriptor = // Component descriptor #{0} {1} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 420 | |
| 421 | ### string displayed for each opcode |
| 422 | classformat_anewarray = {0} {2} [{1}] |
| 423 | classformat_checkcast = {0} {2} [{1}] |
| 424 | classformat_instanceof = {0} {2} [{1}] |
Stephan Herrmann | 5e087fb | 2018-05-12 15:02:06 +0200 | [diff] [blame] | 425 | classformat_ldc_w_methodtype = {0} <MethodType {2}> [{1}] |
| 426 | classformat_ldc_w_methodhandle = {0} <MethodHandle {2} {3}> [{1}] |
Stephan Herrmann | a441c70 | 2018-10-14 17:51:04 +0200 | [diff] [blame] | 427 | classformat_ldc_w_dynamic = {0} <Dynamic> {2} {3} {4} [{1}] |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 428 | classformat_ldc_w_class = {0} <Class {2}> [{1}] |
| 429 | classformat_ldc_w_float = {0} <Float {2}> [{1}] |
| 430 | classformat_ldc_w_integer = {0} <Integer {2}> [{1}] |
| 431 | classformat_ldc_w_string = {0} <String "{2}"> [{1}] |
| 432 | classformat_ldc2_w_long = {0} <Long {2}> [{1}] |
| 433 | classformat_ldc2_w_double = {0} <Double {2}> [{1}] |
| 434 | classformat_multianewarray = {0} {2} [{1}] |
| 435 | classformat_new = {0} {2} [{1}] |
| 436 | classformat_iinc = {0} {1} {2}{3} |
| 437 | classformat_invokespecial ={0} {2} [{1}] |
| 438 | classformat_invokeinterface ={0} {3} [{1}] [nargs: {2}] |
Stephan Herrmann | 6dcbb38 | 2011-10-25 16:30:31 +0000 | [diff] [blame] | 439 | classformat_invokedynamic={0} {2} {3} [{1}] |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 440 | classformat_invokestatic ={0} {2} [{1}] |
| 441 | classformat_invokevirtual ={0} {2} [{1}] |
| 442 | classformat_getfield ={0} {2}.{3} : {4} [{1}] |
| 443 | classformat_getstatic ={0} {2}.{3} : {4} [{1}] |
| 444 | classformat_putstatic ={0} {2}.{3} : {4} [{1}] |
| 445 | classformat_putfield ={0} {2}.{3} : {4} [{1}] |
| 446 | classformat_newarray_boolean = {0} boolean [{1}] |
| 447 | classformat_newarray_char = {0} char [{1}] |
| 448 | classformat_newarray_float = {0} float [{1}] |
| 449 | classformat_newarray_double = {0} double [{1}] |
| 450 | classformat_newarray_byte = {0} byte [{1}] |
| 451 | classformat_newarray_short = {0} short [{1}] |
| 452 | classformat_newarray_int = {0} int [{1}] |
| 453 | classformat_newarray_long = {0} long [{1}] |
| 454 | classformat_store = {0}{1} |
| 455 | classformat_load = {0}{1} |
| 456 | classfileformat_anyexceptionhandler=any |
| 457 | classfileformat_exceptiontableentry = [pc: {0}, pc: {1}] -> {2} when : {3} |
| 458 | classfileformat_linenumbertableentry = [pc: {0}, line: {1}] |
| 459 | classfileformat_localvariabletableentry = [pc: {0}, pc: {1}] local: {2} index: {3} type: {4} |
Stephan Herrmann | bd1255d | 2013-09-05 23:25:05 +0200 | [diff] [blame] | 460 | # jsr 308 |
| 461 | classfileformat_localvariablereferenceinfoentry=[pc: {0}, pc: {1}] index: {2} |
Stephan Herrmann | 7b7062f | 2010-04-01 19:56:59 +0000 | [diff] [blame] | 462 | |
| 463 | ### Eclipse Java Core completion messages. |
| 464 | engine_completing = Computing proposals... |