Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2016-09-08 13:09:51 +0000
committerNoopur Gupta2016-09-08 13:14:56 +0000
commit286f3d7ce46ed43436f36af1a2e4e046a18d745c (patch)
treebeff24d0d5830fdffeb0d95fcd2738820f1ea94e
parent485172082d4df372bc859aaa5e13ebb0c017b95b (diff)
downloadeclipse.jdt.ui-286f3d7ce46ed43436f36af1a2e4e046a18d745c.tar.gz
eclipse.jdt.ui-286f3d7ce46ed43436f36af1a2e4e046a18d745c.tar.xz
eclipse.jdt.ui-286f3d7ce46ed43436f36af1a2e4e046a18d745c.zip
Fixed bug 495680: Improve "Type name must not be qualified" message in
new Java class dialog Change-Id: I2f1e11efc662fb2f6ff5fd00ea9acfa9d82df56e
-rw-r--r--org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.properties2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.properties b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.properties
index 9fa1854462..857b9fd34b 100644
--- a/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.properties
+++ b/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.properties
@@ -128,7 +128,7 @@ NewTypeWizardPage_error_TypeNameExists=Type already exists.
NewTypeWizardPage_error_TypeNameExistsDifferentCase=Type with same name but different case exists.
NewTypeWizardPage_error_InvalidTypeName=Type name is not valid. {0}
NewTypeWizardPage_error_QualifiedName=Type name must not be qualified.
-NewTypeWizardPage_info_FileExtensionNotRequired=File extension (.java) will be ignored.
+NewTypeWizardPage_info_FileExtensionNotRequired=The file extension '.java' will not be part of the type name.
NewTypeWizardPage_warning_TypeNameDiscouraged=Type name is discouraged. {0}
NewTypeWizardPage_error_TypeParameters=Type name is not valid. Type parameters are only available if source level is 1.5.

Back to the top