public class ConfigureInfo
extends java.lang.Object
ConfigureInfo
"mapping" is given in XML itself.
Note: This configuration method and this class are very old and rarely used today, mostly in other old legacy code.
FIXME! TT 2022-12-19: There are some more features which are not explained here, for example "inherit".
Example for a possible ConfigureInfo
"mapping" definition:
ConfigureInfo
instance, for example using the ConfigureInfo.declareInfo()
factory method, from a
given "mapping" definition XML.
Using this ConfigureInfo
instance the class may then configure an instance of itself via
configinfo.configure(classInstanceToBeConfigured, classConfigXML)
with the data from the actual configuration
XML.
The class must contain instance methods handleDataE(e = Element)
and handleOtherDataE(e = Element)
which will be called and used to actually do something with the data from the XML, for example set some other
properties of the to-be-configured instance.Modifier and Type | Field and Description |
---|---|
static java.util.HashMap |
attributeConverters |
Constructor and Description |
---|
ConfigureInfo(java.lang.Class cl,
electric.xml.Element root) |
Modifier and Type | Method and Description |
---|---|
void |
configure(java.lang.Object o,
electric.xml.Element confRoot)
Configures the given
Object - which should be of the class this instance is meant for, otherwise errors
will occurr - with the XML data from the given XML Element and its children. |
void |
declareAttributes(electric.xml.Element root)
Interprets the "Attributes" configuration XML element.
|
void |
declareElements(electric.xml.Element root)
Interprets the "Elements" configuration XML element.
|
static ConfigureInfo |
declareInfo(java.lang.Class cl,
java.lang.String s)
Static factory method to create a
ConfigureInfo instance for a given class from a given (XML) string. |
java.util.Collection |
getAttributeCollection() |
java.util.Map |
getAttributeMap() |
static ConfigureInfo |
getConfigInfo(java.lang.Class cl)
Tries to get a predefined
ConfigureInfo instance from the respective static property of the given class. |
static ConfigureInfo |
getConfigInfo(java.lang.Class cl,
java.lang.String prop) |
java.util.Collection |
getElementCollection() |
java.util.Map |
getElementMap() |
static java.lang.reflect.Field |
getStaticProperty(java.lang.Class cl,
java.lang.String prop)
Convenience method to get a (static) property from a given class.
|
void |
handleAttributes(java.lang.Object o,
electric.xml.Element confRoot) |
void |
handleElements(java.lang.Object o,
electric.xml.Element confRoot) |
static java.util.HashMap |
initAttributeConverters() |
public ConfigureInfo(java.lang.Class cl, electric.xml.Element root)
cl
- FIXMEroot
- the XML root Element
of the configuration definitionpublic static ConfigureInfo declareInfo(java.lang.Class cl, java.lang.String s)
ConfigureInfo
instance for a given class from a given (XML) string.
FIXME! TT 2022-12-19: Today this method would be called of(cl = Class, s = String)
public void declareAttributes(electric.xml.Element root)
public void declareElements(electric.xml.Element root)
public static ConfigureInfo getConfigInfo(java.lang.Class cl)
ConfigureInfo
instance from the respective static property of the given class.
Throws exceptions if no such property exists or something else goes wrong.
FIXME! TT 2022-12-19: Today this method would be called of(cl = Class, prop = String)
cl
- the class of interestprop
- the name of the static property supposed to hold the instance; defaults to "CONFIG"ConfigureInfo
instancepublic static ConfigureInfo getConfigInfo(java.lang.Class cl, java.lang.String prop)
public static java.lang.reflect.Field getStaticProperty(java.lang.Class cl, java.lang.String prop)
cl
- the class of interestprop
- the name of the requested propertyField
corresponding to the requested propertyjava.lang.NoSuchFieldException
- if no such property existsjava.lang.SecurityException
- if access is not allowedpublic java.util.Collection getAttributeCollection()
public java.util.Collection getElementCollection()
public java.util.Map getAttributeMap()
public java.util.Map getElementMap()
public static java.util.HashMap initAttributeConverters()
public void handleAttributes(java.lang.Object o, electric.xml.Element confRoot)
public void handleElements(java.lang.Object o, electric.xml.Element confRoot)
public void configure(java.lang.Object o, electric.xml.Element confRoot)
Object
- which should be of the class this instance is meant for, otherwise errors
will occurr - with the XML data from the given XML Element
and its children.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.