| java.lang.Object org.apache.cocoon.components.source.helpers.SourceProperty
SourceProperty | public class SourceProperty implements XMLizable(Code) | | The interface for a property of a source
author: Stephan Michels author: Martin Holz version: $Id: SourceProperty.java 433543 2006-08-22 06:22:54Z crossley $ |
SourceProperty | public SourceProperty(String namespace, String name)(Code) | | Creates a new property for a source
Parameters: namespace - The namespace of the property Parameters: name - The name of the property |
SourceProperty | public SourceProperty(String namespace, String name, String value)(Code) | | Creates a new property for a source
Parameters: namespace - The namespace of the property Parameters: name - The name of the property Parameters: value - The value of the property |
SourceProperty | public SourceProperty(Element property)(Code) | | Creates a new property for a source
Parameters: property - The property in DOM representation |
getName | public String getName()(Code) | | Return the name of the property
Name of the property |
getNamespace | public String getNamespace()(Code) | | Return the namespace of the property
The namespace of the property |
getValue | public Element getValue()(Code) | | Get the property value as DOM Element.
|
getValueAsString | public String getValueAsString()(Code) | | Returns the value of the property
Value of the property |
setName | public void setName(String name)(Code) | | Sets the name of the property
Parameters: name - Name of the property |
setNamespace | public void setNamespace(String namespace)(Code) | | Sets the namespace for this property
Parameters: namespace - The namespace of the property |
setValue | public void setValue(String value)(Code) | | Sets the value of the property
Parameters: value - Value of the property |
setValue | public void setValue(NodeList values)(Code) | | Sets the value of the property
Parameters: values - |
|
|