@Contract public abstract class ConfigInjector<T> extends Object
Constructor and Description |
---|
ConfigInjector() |
Modifier and Type | Method and Description |
---|---|
boolean |
asBoolean(String v) |
int |
asInt(String v) |
abstract void |
inject(Dom dom,
T target)
Reads values from
Dom and inject them into the given target object. |
abstract void |
injectAttribute(Dom dom,
String attributeName,
T target)
Injects a single property of the given attribute name.
|
abstract void |
injectElement(Dom dom,
String elementName,
T target)
Injects a single property of the given element name.
|
<T> T |
reference(Dom dom,
String id,
Class<T> type)
Resolves a reference to the given type by the given id.
|
public abstract void inject(Dom dom, T target)
Dom
and inject them into the given target object.ConfigurationException
- If the injection fails. This exception won't have its location set yet.
It's the caller's job to do so.public abstract void injectElement(Dom dom, String elementName, T target)
public abstract void injectAttribute(Dom dom, String attributeName, T target)
public final int asInt(String v)
public final boolean asBoolean(String v)
Copyright © 2009–2017 Oracle Corporation. All rights reserved.