Author: tilman
Date: Thu Dec 25 08:05:09 2025
New Revision: 1930841

Log:
PDFBOX-5660: fix typo, improve javadoc

Modified:
   
pdfbox/trunk/xmpbox/src/main/java/org/apache/xmpbox/type/PropertiesDescription.java

Modified: 
pdfbox/trunk/xmpbox/src/main/java/org/apache/xmpbox/type/PropertiesDescription.java
==============================================================================
--- 
pdfbox/trunk/xmpbox/src/main/java/org/apache/xmpbox/type/PropertiesDescription.java
 Thu Dec 25 07:51:10 2025        (r1930840)
+++ 
pdfbox/trunk/xmpbox/src/main/java/org/apache/xmpbox/type/PropertiesDescription.java
 Thu Dec 25 08:05:09 2025        (r1930841)
@@ -27,12 +27,13 @@ import java.util.List;
 import java.util.Map;
 
 /**
- * Represents all properties known for a specific namespace Type and 
attributes associated to each properties are saved
- * If a specific type well declared is used, this class map it to a basic type
- * 
+ * Represents all properties known for a specific namespace Type and 
attributes associated to each
+ * properties. If a specific well declared type is used, this class maps it to 
a basic type.
+ *
  * @author a183132
- * 
- *         Attribute management pre-implemented in order to give clues to make 
an attribute management system
+ *
+ * Attribute management pre-implemented in order to give clues to make an 
attribute management
+ * system.
  */
 public class PropertiesDescription
 {
@@ -49,11 +50,11 @@ public class PropertiesDescription
     }
 
     /**
-     * Get All Properties Name
+     * Get all property names
      * 
      * @return a list of properties qualifiedName
      */
-    public List<String> getPropertiesName()
+    public List<String> getPropertiesNames()
     {
         return new ArrayList<>(types.keySet());
     }

Reply via email to