commons-digester3-examples/annotations/atom/src/main/java/org/apache/commons/digester3/annotations/atom/Feed.java [60:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void addEntry( final Entry entry )
    {
        entries.add( entry );
    }

    public List<String> getAuthors()
    {
        return authors;
    }

    public List<Entry> getEntries()
    {
        return entries;
    }

    public String getId()
    {
        return id;
    }

    public URL getLink()
    {
        return link;
    }

    public String getTitle()
    {
        return title;
    }

    public Date getUpdated()
    {
        return updated;
    }

    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 "Feed [title=" + title + ", link=" + link + ", updated=" + updated + ", authors=" + authors + ", id="
            + id + ", entries=" + entries + "]";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commons-digester3-examples/edsl/atom/src/main/java/org/apache/commons/digester3/edsl/atom/Feed.java [47:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void addEntry( final Entry entry )
    {
        entries.add( entry );
    }

    public List<String> getAuthors()
    {
        return authors;
    }

    public List<Entry> getEntries()
    {
        return entries;
    }

    public String getId()
    {
        return id;
    }

    public URL getLink()
    {
        return link;
    }

    public String getTitle()
    {
        return title;
    }

    public Date getUpdated()
    {
        return updated;
    }

    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 "Feed [title=" + title + ", link=" + link + ", updated=" + updated + ", authors=" + authors + ", id="
            + id + ", entries=" + entries + "]";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



