Package org.apache.tomcat.util.digester
Class SetPropertyRule
- java.lang.Object
-
- org.apache.tomcat.util.digester.Rule
-
- org.apache.tomcat.util.digester.SetPropertyRule
-
public class SetPropertyRule extends Rule
Rule implementation that sets an individual property on the object at the top of the stack, based on attributes with specified names.
-
-
Constructor Summary
Constructors Constructor Description SetPropertyRule(String name, String value)Construct a "set property" rule with the specified name and value attributes.SetPropertyRule(Digester digester, String name, String value)Deprecated.The digester instance is now set in theDigester.addRule(java.lang.String, org.apache.tomcat.util.digester.Rule)method.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbegin(Attributes attributes)Process the beginning of this element.StringtoString()Render a printable version of this Rule.-
Methods inherited from class org.apache.tomcat.util.digester.Rule
begin, body, body, end, end, finish, getDigester, getNamespaceURI, setDigester, setNamespaceURI
-
-
-
-
Constructor Detail
-
SetPropertyRule
public SetPropertyRule(Digester digester, String name, String value)
Deprecated.The digester instance is now set in theDigester.addRule(java.lang.String, org.apache.tomcat.util.digester.Rule)method. UseSetPropertyRule(String name, String value)instead.Construct a "set property" rule with the specified name and value attributes.- Parameters:
digester- The digester with which this rule is associatedname- Name of the attribute that will contain the name of the property to be setvalue- Name of the attribute that will contain the value to which the property should be set
-
SetPropertyRule
public SetPropertyRule(String name, String value)
Construct a "set property" rule with the specified name and value attributes.- Parameters:
name- Name of the attribute that will contain the name of the property to be setvalue- Name of the attribute that will contain the value to which the property should be set
-
-
Method Detail
-
begin
public void begin(Attributes attributes) throws Exception
Process the beginning of this element.- Overrides:
beginin classRule- Parameters:
attributes- The attribute list of this element- Throws:
NoSuchMethodException- if the bean does not have a writeable property of the specified nameException
-
-