Class ChangeLog
java.lang.Object
org.apache.maven.plugins.changelog.ChangeLog
Change log task. It uses a ChangeLogGenerator and ChangeLogParser to create
a Collection of ChangeLogEntry objects, which are used to produce an XML
output that represents the list of changes.
- Version:
- $Id:ChangeLog.java 437762 2006-08-28 19:29:49 +0200 (må, 28 aug 2006) dennisl $
- Author:
- Glenn McAllister, Jeff Martin, Jason van Zyl, dIon Gillard, Stefan Bodewig, Peter Donald
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic List
<org.apache.maven.scm.command.changelog.ChangeLogSet> loadChangedSets
(InputStream stream) parses a previously generated changelog xml document and return its changed setsstatic List
<org.apache.maven.scm.command.changelog.ChangeLogSet> loadChangedSets
(Reader reader)
-
Constructor Details
-
ChangeLog
public ChangeLog()
-
-
Method Details
-
loadChangedSets
public static List<org.apache.maven.scm.command.changelog.ChangeLogSet> loadChangedSets(InputStream stream) throws ParserConfigurationException, SAXException, IOException parses a previously generated changelog xml document and return its changed sets- Parameters:
stream
- the changelog xml document- Returns:
- changelog sets parsed from the xml document
- Throws:
ParserConfigurationException
- when instantiation of the SAX parser failedSAXException
- when an error occurred while parsing the xml documentIOException
- when an error occurred while accessing the xml document
-
loadChangedSets
public static List<org.apache.maven.scm.command.changelog.ChangeLogSet> loadChangedSets(Reader reader) throws ParserConfigurationException, SAXException, IOException
-