Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

source.org.* (7)source.org.apache.* (7)source.org.apache.java.* (7)
source.org.apache.java.io.* (3)source.org.apache.java.util.* (4)

Package Samples:

source.org.apache.java.util
source.org.apache.java.io

Classes:

ExtendedProperties: This class extends normal Java properties by adding the possibility to use the same key many times concatenating the value strings instead of overwriting them. The Extended Properties syntax is explained here: each property has the syntax key = value the key may use any character but the equal sign '=' value may be separated on different lines if a backslash is placed at the end of the line that continues below. if value is a list of strings, each token is separated by a comma ',' Commas in each token are escaped placing a backslash right before the comma. if a key is used more than once, the values ...
Configurations: This class is used to encapsulate properties and addresses the need for a flexible, portable and fast configurations repository. While properties are just considered as strings, configurations have methods to return different types such as int and long . Performance is needed to avoid the use of properties only at startup to fill variables: configurations encapsulate properties in the sense that objects retrieved by parsing property strings are stored for faster reuse. This allows a program to use configurations instead of global variables in a central repository, that, if updated, will reflect ...
LogWriter: A LogWriter allows an application to incapsulate an output stream and dumps its logs on it. To control the different kinds of log messages they are separated into channels that can be activated setting to true the right property. The configurations that control this writer are: "identifier" a boolean value that enables the whole logging "identifier".dateFormat the date format used to time stamp "identifier".timestamp a boolean value that enables time stamping "identifier".channel."channelName" a boolean value that enables the specified channel
ConfigurationsRepository: This class must be extended by properties providers that are syntax dependent. The implementing classes should place into the encapsulated Hashtable only properties of the form: [String key, String value] for single values [String key, Vector values] where the vector must be a sequence of strings.
LogRecord: Class to store the logging information until it gets processed by the logger thread. Possible enhancements: Name of the thread which issued the log message. Name of the object on whose behalf the message was issued.
SimpleQueue: Implements single queue. Extremely simplified queue implementation, cut to fit into the background logging.
Logger: This interface represents a simple logger (LogWriter is an implementation).

Home | Contact Us | Privacy Policy | Terms of Service