it.sauronsoftware.feed4j.bean
Class RawAttribute

java.lang.Object
  extended by it.sauronsoftware.feed4j.bean.RawAttribute

public class RawAttribute
extends java.lang.Object

This class is used to represent the attributes of a XML element.

Author:
Carlo Pelliccia

Constructor Summary
RawAttribute()
           
 
Method Summary
 java.lang.String getName()
          This method returns the attribute name.
 java.lang.String getNamespaceURI()
          This method returns the attribute namespace URI.
 java.lang.String getValue()
          This method returns the attribute value.
 void setName(java.lang.String name)
          This method sets the attribute name.
 void setNamespaceURI(java.lang.String namespaceURI)
          This method sets the attribute namespace URI.
 void setValue(java.lang.String value)
          This method sets the attribute value.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RawAttribute

public RawAttribute()
Method Detail

getName

public java.lang.String getName()
This method returns the attribute name.

Returns:
The attribute name.

setName

public void setName(java.lang.String name)
This method sets the attribute name.

Parameters:
name - The attribute name.

getNamespaceURI

public java.lang.String getNamespaceURI()
This method returns the attribute namespace URI.

Returns:
The attribute namespace URI.

setNamespaceURI

public void setNamespaceURI(java.lang.String namespaceURI)
This method sets the attribute namespace URI.

Parameters:
namespaceURI - The attribute namespace URI.

getValue

public java.lang.String getValue()
This method returns the attribute value.

Returns:
The attribute value.

setValue

public void setValue(java.lang.String value)
This method sets the attribute value.

Parameters:
value - The attribute value.