-
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implemented change req. #46 propertyNames()
in interface Accessible Set<String> propertyNames(); This differs from the correspondent method in java.util.Properties since Properties.propertyNames returns an Enumeration<?> but property names are required to be Strings. In JDK 1.6 the method `Set<String> stringPropertyNames()` has been introduced but since we require JDK 1.5+ support I couldn't just delegate and I had to reimplement it. So I chosed to implement it with the proper method signature, even though it doesn't match java.util.Properties interface.
- Loading branch information
Luigi R. Viggiano
committed
Jul 29, 2013
1 parent
28a5611
commit b93b2f0
Showing
3 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters