src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/resources/doclets.properties

Print this page

        

@@ -30,11 +30,10 @@
 doclet.Building_Tree=Building tree for all the packages and classes...
 doclet.Building_Index=Building index for all the packages and classes...
 doclet.Building_Index_For_All_Classes=Building index for all classes...
 doclet.sourcetab_warning=The argument for -sourcetab must be an integer greater than 0.
 doclet.Packages=Packages
-doclet.Profiles=Profiles
 doclet.Other_Packages=Other Packages
 doclet.Notice_taglet_registered=Registered Taglet {0} ...
 doclet.Notice_taglet_unseen=Note: Custom tags that were not seen: {0}
 doclet.Notice_taglet_overriden=Note: Custom tags that override standard tags: {0}
 doclet.Notice_taglet_conflict_warn=Note: Custom tags that could override future standard tags: {0}. To avoid potential overrides, use at least one period character (.) in custom tag names.

@@ -64,15 +63,14 @@
 doclet.Version=Version:
 doclet.Factory=Factory:
 doclet.UnknownTag={0} is an unknown tag.
 doclet.UnknownTagLowercase={0} is an unknown tag -- same as a known tag except for case.
 doclet.noInheritedDoc=@inheritDoc used but {0} does not override or implement any method.
-doclet.malformed_html_link_tag=<a> tag is malformed:\n"{0}"
+# doclet.malformed_html_link_tag=<a> tag is malformed:\n"{0}"
 doclet.tag_misuse=Tag {0} cannot be used in {1} documentation.  It can only be used in the following types of documentation: {2}.
 doclet.javafx_tag_misuse=Tags @propertyGetter, @propertySetter and @propertyDescription can only be used in JavaFX properties getters and setters.
 doclet.Package_Summary=Package Summary
-doclet.Profile_Summary=Profile Summary
 doclet.Interface_Summary=Interface Summary
 doclet.Annotation_Types_Summary=Annotation Types Summary
 doclet.Enum_Summary=Enum Summary
 doclet.Exception_Summary=Exception Summary
 doclet.Error_Summary=Error Summary

@@ -91,11 +89,10 @@
 doclet.Exceptions=Exceptions
 doclet.Errors=Errors
 doclet.Classes=Classes
 doclet.Packages=Packages
 doclet.packages=packages
-doclet.profiles=profiles
 doclet.All_Classes=All Classes
 doclet.All_Superinterfaces=All Superinterfaces:
 doclet.All_Implemented_Interfaces=All Implemented Interfaces:
 doclet.All_classes_and_interfaces=All classes and interfaces (except non-static nested types)
 doclet.Package_class_and_interface_descriptions=Package, class and interface descriptions

@@ -172,11 +169,10 @@
 doclet.Type=Type
 doclet.Types=Types
 doclet.Members=Members
 doclet.SearchTags=SearchTags
 doclet.search=SEARCH:
-doclet.invalid_usage_of_tag=invalid usage of {0} tag.
 doclet.Field=Field
 doclet.Property=Property
 doclet.Constructor=Constructor
 doclet.Method=Method
 doclet.Annotation_Type_Optional_Member=Optional Element

@@ -188,25 +184,26 @@
 doclet.ConstantField=Constant Field
 doclet.Value=Value
 doclet.0_and_1={0} and {1}
 
 #Documentation for Enums
-doclet.enum_values_doc.main=\n\
- Returns an array containing the constants of this enum type, in\n\
- the order they are declared.  This method may be used to iterate\n\
+doclet.enum_values_doc.firstsentence=\
+Returns an array containing the constants of this enum type, in\n\
+the order they are declared.
+doclet.enum_values_doc.body=\  This method may be used to iterate\n\
  over the constants as follows:\n\
  <pre>\n\
  for ({0} c : {0}.values())\n\
  &nbsp;   System.out.println(c);\n\
  </pre>
+doclet.enum_values_doc.return=\
+an array containing the constants of this enum type, in the order they are declared
 
-doclet.enum_values_doc.return=\n\
- an array containing the constants of this enum type, in the order they are declared
-
-doclet.enum_valueof_doc.main=\n\
- Returns the enum constant of this type with the specified name.\n\
- The string must match <i>exactly</i> an identifier used to declare an\n\
+doclet.enum_valueof_doc.firstsentence=\
+Returns the enum constant of this type with the specified name.
+doclet.enum_valueof_doc.body=\n\
+The string must match <i>exactly</i> an identifier used to declare an\n\
  enum constant in this type.  (Extraneous whitespace characters are \n\
  not permitted.)
 
 doclet.enum_valueof_doc.param_name=\
  the name of the enum constant to be returned.