commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Item.java [40:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String description = null;

    public String getDescription()
    {
        return ( this.description );
    }

    public void setDescription( final String description )
    {
        this.description = description;
    }

    /**
     * The item link (1-500 characters).
     */
    protected String link = null;

    public String getLink()
    {
        return ( this.link );
    }

    public void setLink( final String link )
    {
        this.link = link;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/TextInput.java [42:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String description = null;

    public String getDescription()
    {
        return ( this.description );
    }

    public void setDescription( final String description )
    {
        this.description = description;
    }

    /**
     * The text input link (1-500 characters).
     */
    protected String link = null;

    public String getLink()
    {
        return ( this.link );
    }

    public void setLink( final String link )
    {
        this.link = link;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



