| Home >> All >> org >> apache >> log4j >> [ config Javadoc ] |
org.apache.log4j.config: Javadoc index of package org.apache.log4j.config.
Package Samples:
org.apache.log4j.config
Classes:
PropertySetter: General purpose Object property setter. Clients repeatedly invokes setProperty(name,value) 55 in order to invoke setters on the Object specified in the constructor. This class relies on the JavaBeans java.beans.Introspector to analyze the given Object Class using reflection. Usage: PropertySetter ps = new PropertySetter(anObject); ps.set("name", "Joe"); ps.set("age", "32"); ps.set("isMale", "true"); will cause the invocations anObject.setName("Joe"), anObject.setAge(32), and setMale(true) if such methods exist with those signatures. Otherwise an java.beans.IntrospectionException are thrown.
PropertySetterException: Thrown when an error is encountered whilst attempting to set a property using the PropertySetter utility class.
PropertyPrinter: Prints the configuration of the log4j default hierarchy (which needs to be auto-initialized) as a propoperties file on a java.io.PrintWriter .
PropertyGetter: Used for inferring configuration information for a log4j's component.
| Home | Contact Us | Privacy Policy | Terms of Service |