Skip to content

Commit 36a4413

Browse files
committed
PDFBOX-5660: fix typo, improve javadoc
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1930841 13f79535-47bb-0310-9956-ffa450edef68
1 parent e02c97f commit 36a4413

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

xmpbox/src/main/java/org/apache/xmpbox/type/PropertiesDescription.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@
2727
import java.util.Map;
2828

2929
/**
30-
* Represents all properties known for a specific namespace Type and attributes associated to each properties are saved
31-
* If a specific type well declared is used, this class map it to a basic type
32-
*
30+
* Represents all properties known for a specific namespace Type and attributes associated to each
31+
* properties. If a specific well declared type is used, this class maps it to a basic type.
32+
*
3333
* @author a183132
34-
*
35-
* Attribute management pre-implemented in order to give clues to make an attribute management system
34+
*
35+
* Attribute management pre-implemented in order to give clues to make an attribute management
36+
* system.
3637
*/
3738
public class PropertiesDescription
3839
{
@@ -49,11 +50,11 @@ public PropertiesDescription()
4950
}
5051

5152
/**
52-
* Get All Properties Name
53+
* Get all property names
5354
*
5455
* @return a list of properties qualifiedName
5556
*/
56-
public List<String> getPropertiesName()
57+
public List<String> getPropertiesNames()
5758
{
5859
return new ArrayList<>(types.keySet());
5960
}

0 commit comments

Comments
 (0)