commons-digester3-examples/annotations/atom/src/main/java/org/apache/commons/digester3/annotations/atom/Entry.java [46:102]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String content;

    public String getContent()
    {
        return content;
    }

    public String getId()
    {
        return id;
    }

    public URL getLink()
    {
        return link;
    }

    public String getTitle()
    {
        return title;
    }

    public Date getUpdated()
    {
        return updated;
    }

    public void setContent( final String content )
    {
        this.content = content;
    }

    public void setId( final String id )
    {
        this.id = id;
    }

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

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

    public void setUpdated( final Date updated )
    {
        this.updated = updated;
    }

    @Override
    public String toString()
    {
        return "\n    Entry [title=" + title + ", link=" + link + ", updated=" + updated + ", id=" + id + ", content="
            + content + "]\n";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-examples/edsl/atom/src/main/java/org/apache/commons/digester3/edsl/atom/Entry.java [36:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String content;

    public String getContent()
    {
        return content;
    }

    public String getId()
    {
        return id;
    }

    public URL getLink()
    {
        return link;
    }

    public String getTitle()
    {
        return title;
    }

    public Date getUpdated()
    {
        return updated;
    }

    public void setContent( final String content )
    {
        this.content = content;
    }

    public void setId( final String id )
    {
        this.id = id;
    }

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

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

    public void setUpdated( final Date updated )
    {
        this.updated = updated;
    }

    @Override
    public String toString()
    {
        return "\n    Entry [title=" + title + ", link=" + link + ", updated=" + updated + ", id=" + id + ", content="
            + content + "]\n";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



