Apache Log4cxx  Version 1.5.0
Loading...
Searching...
No Matches
log4cxx::config::PropertySetter Class Reference

General purpose Object property setter. More...

#include <propertysetter.h>

Public Member Functions

 PropertySetter (const helpers::ObjectPtr &obj)
 Create a new PropertySetter for the specified Object.
void setProperties (helpers::Properties &properties, const LogString &prefix, log4cxx::helpers::Pool &p)
 Set the properites for the object that match the prefix passed as parameter.
void setProperty (const LogString &option, const LogString &value, log4cxx::helpers::Pool &p)
 Set a property on this PropertySetter's Object.
void activate (log4cxx::helpers::Pool &p)

Static Public Member Functions

static void setProperties (const helpers::ObjectPtr &obj, helpers::Properties &properties, const LogString &prefix, log4cxx::helpers::Pool &p)
 Set the properties of an object passed as a parameter in one go.

Protected Attributes

helpers::ObjectPtr obj

Detailed Description

General purpose Object property setter.

Clients repeatedly invokes setProperty(name,value) in order to invoke setters on the Object specified in the constructor.

Usage:

PropertySetter ps(anObject);
ps.set("name", "Joe");
ps.set("age", "32");
ps.set("isMale", "true");

will cause the invocations anObject->setOption("name", "Joe"), anObject->setOption("age", "32") and anObject->setOption("isMale", "true") if the spi::OptionHandler interface is supported by anObject.

Constructor & Destructor Documentation

◆ PropertySetter()

log4cxx::config::PropertySetter::PropertySetter ( const helpers::ObjectPtr & obj)

Create a new PropertySetter for the specified Object.

This is done in prepartion for invoking setProperty one or more times.

Parameters
objthe object for which to set properties

Member Function Documentation

◆ activate()

void log4cxx::config::PropertySetter::activate ( log4cxx::helpers::Pool & p)

◆ setProperties() [1/2]

void log4cxx::config::PropertySetter::setProperties ( const helpers::ObjectPtr & obj,
helpers::Properties & properties,
const LogString & prefix,
log4cxx::helpers::Pool & p )
static

Set the properties of an object passed as a parameter in one go.

The properties are parsed relative to a prefix.

Parameters
objThe object to configure.
propertiesA java.util.Properties containing keys and values.
prefixOnly keys having the specified prefix will be set.
ppool to use for any allocations required during call.

◆ setProperties() [2/2]

void log4cxx::config::PropertySetter::setProperties ( helpers::Properties & properties,
const LogString & prefix,
log4cxx::helpers::Pool & p )

Set the properites for the object that match the prefix passed as parameter.

◆ setProperty()

void log4cxx::config::PropertySetter::setProperty ( const LogString & option,
const LogString & value,
log4cxx::helpers::Pool & p )

Set a property on this PropertySetter's Object.

If the underlying Object supports the spi::OptionHandler interface, the setOption method is called.

Parameters
optionname of the property
valueString value of the property
ppool to use for any allocations required during call.

Member Data Documentation

◆ obj

helpers::ObjectPtr log4cxx::config::PropertySetter::obj
protected

The documentation for this class was generated from the following file: