org.apache.maven.scm.command.changelog
public class ChangeLogSet extends Object
Version: $Id: ChangeLogSet.java 383898 2006-03-07 14:21:09Z evenisse $
| Field Summary | |
|---|---|
| static String | DEFAULT_ENCODING |
| Constructor Summary | |
|---|---|
| ChangeLogSet(Date startDate, Date endDate)
Initializes a new instance of this class.
| |
| ChangeLogSet(List entries, Date startDate, Date endDate)
Initializes a new instance of this class.
| |
| Method Summary | |
|---|---|
| List | getChangeSets()
Returns the collection of changeSet.
|
| Date | getEndDate()
Returns the end date for this set.
|
| Date | getStartDate()
Returns the start date.
|
| void | setChangeSets(List changeSets) |
| String | toXML()
Creates an XML representation of this change log set with a default encoding (ISO-8859-1). |
| String | toXML(String encoding)
Creates an XML representation of this change log set. |
Parameters: startDate the start date/tag for this set. endDate the end date/tag for this set, or null if this set goes to the present time.
Parameters: entries collection of ChangeSet objects for this set. startDate the start date/tag for this set. endDate the end date/tag for this set, or null if this set goes to the present time.
Returns: the collection of ChangeSet objects for this set.
Returns: the end date for this set, or null if this set goes to the present time.
Returns: the start date.