| java.util.Properties org.jamwiki.utils.SortedProperties
SortedProperties | public class SortedProperties extends Properties (Code) | | This class acts as a utility class for providing the capability of a property file
that is sorted alphabetically by key value. It is useful for things like translation
files where having the file in a logical order is useful for maintainers.
|
Method Summary | |
public Enumeration | keys() Override the Properties.keys() method so that the keyset returned is sorted. |
SortedProperties | public SortedProperties()(Code) | | Standard constructor for creating a sorted properties file.
|
SortedProperties | public SortedProperties(Properties properties)(Code) | | Copy constructor used to create a sorted properties file.
|
keys | public Enumeration keys()(Code) | | Override the Properties.keys() method so that the keyset returned is sorted.
|
|
|