Constructors Summary |
---|
public ObjectCreateRule(Digester digester, String className)Construct an object create rule with the specified class name.
this(className);
|
public ObjectCreateRule(Digester digester, Class clazz)Construct an object create rule with the specified class.
this(clazz);
|
public ObjectCreateRule(Digester digester, String className, String attributeName)Construct an object create rule with the specified class name and an
optional attribute name containing an override.
this (className, attributeName);
|
public ObjectCreateRule(Digester digester, String attributeName, Class clazz)Construct an object create rule with the specified class and an
optional attribute name containing an override.
this(attributeName, clazz);
|
public ObjectCreateRule(String className)Construct an object create rule with the specified class name.
this(className, (String) null);
|
public ObjectCreateRule(Class clazz)Construct an object create rule with the specified class.
this(clazz.getName(), (String) null);
|
public ObjectCreateRule(String className, String attributeName)Construct an object create rule with the specified class name and an
optional attribute name containing an override.
this.className = className;
this.attributeName = attributeName;
|
public ObjectCreateRule(String attributeName, Class clazz)Construct an object create rule with the specified class and an
optional attribute name containing an override.
this(clazz.getName(), attributeName);
|