commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Image.java [72:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String link = null;

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

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

    /**
     * The image alternate text (1-100 characters).
     */
    protected String title = null;

    public String getTitle()
    {
        return ( this.title );
    }

    public void setTitle( final String title )
    {
        this.title = title;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-examples/rss/src/main/java/org/apache/commons/digester3/rss/Item.java [55:79]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected String link = null;

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

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

    /**
     * The item title (1-100 characters).
     */
    protected String title = null;

    public String getTitle()
    {
        return ( this.title );
    }

    public void setTitle( final String title )
    {
        this.title = title;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



