org.apache.maven.changelog
Class ChangeLogSet

java.lang.Object
  extended byorg.apache.maven.changelog.ChangeLogSet

public class ChangeLogSet
extends Object

Change Log Set - holds details about a set of change log entries.

Version:
$$
Author:
David Jackman

Constructor Summary
ChangeLogSet(Collection entries, String start, String end)
          Initializes a new instance of this class.
 
Method Summary
 String getEnd()
          Returns the end date/tag for this set.
 Collection getEntries()
          Returns the collection of entries for this set.
 String getStart()
          Returns the start date/tag for this set.
 String toXML()
          Creates an XML representation of this change log set.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ChangeLogSet

public ChangeLogSet(Collection entries,
                    String start,
                    String end)
Initializes a new instance of this class.

Parameters:
entries - collection of ChangeLogEntry objects for this set.
start - the start date/tag for this set.
end - the end date/tag for this set, or null if this set goes to the present time.
Method Detail

getEntries

public Collection getEntries()
Returns the collection of entries for this set.

Returns:
the collection of ChangeLogEntry objects for this set.

getStart

public String getStart()
Returns the start date/tag for this set.

Returns:
the start date/tag for this set.

getEnd

public String getEnd()
Returns the end date/tag for this set.

Returns:
the end date/tag for this set, or null if this set goes to the present time.

toXML

public String toXML()
Creates an XML representation of this change log set.



Copyright © 2001-2007 Apache Software Foundation. All Rights Reserved.