org.apache.maven.scm
Class ChangeSet

java.lang.Object
  extended by org.apache.maven.scm.ChangeSet
Direct Known Subclasses:
SvnChangeSet

public class ChangeSet
extends Object

Version:
$Id: ChangeSet.java 539328 2007-05-18 08:58:10Z evenisse $
Author:
Emmanuel Venisse

Field Summary
static String AMPERSAND_ENTITY
          Escaped & entity
static String APOSTROPHE_ENTITY
          Escaped ' entity
static String GREATER_THAN_ENTITY
          Escaped > entity
static String LESS_THAN_ENTITY
          Escaped < entity
static String QUOTE_ENTITY
          Escaped " entity
 
Constructor Summary
ChangeSet()
          Constructor used when attributes aren't available until later
ChangeSet(Date date, String comment, String author, List files)
           
ChangeSet(String strDate, String userDatePattern, String comment, String author, List files)
           
 
Method Summary
 void addFile(ChangeFile file)
           
 boolean containsFilename(String filename, ScmProviderRepository repository)
           
 boolean equals(Object obj)
           
static String escapeValue(Object value)
          Escape the toString of the given object.
 String getAuthor()
          Getter for property author.
 String getComment()
          Getter for property comment.
 Date getDate()
          Getter for property date.
 String getDateFormatted()
           
 List getFiles()
          Getter for ChangeFile list.
 String getTimeFormatted()
           
 void setAuthor(String author)
          Setter for property author.
 void setComment(String comment)
          Setter for property comment.
 void setDate(Date date)
          Setter for property date.
 void setDate(String date)
          Setter for property date that takes a string and parses it
 void setDate(String date, String userDatePattern)
          Setter for property date that takes a string and parses it
 void setFiles(List files)
          Setter for ChangeFile list.
 String toString()
           
 String toXML()
          Provide the changelog entry as an XML snippet.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

LESS_THAN_ENTITY

public static final String LESS_THAN_ENTITY
Escaped < entity

See Also:
Constant Field Values

GREATER_THAN_ENTITY

public static final String GREATER_THAN_ENTITY
Escaped > entity

See Also:
Constant Field Values

AMPERSAND_ENTITY

public static final String AMPERSAND_ENTITY
Escaped & entity

See Also:
Constant Field Values

APOSTROPHE_ENTITY

public static final String APOSTROPHE_ENTITY
Escaped ' entity

See Also:
Constant Field Values

QUOTE_ENTITY

public static final String QUOTE_ENTITY
Escaped " entity

See Also:
Constant Field Values
Constructor Detail

ChangeSet

public ChangeSet(String strDate,
                 String userDatePattern,
                 String comment,
                 String author,
                 List files)
Parameters:
strDate - Date the changes were committed
userDatePattern - pattern of date
comment - comment provided at commit time
author - User who made changes
files - The ChangeFile list

ChangeSet

public ChangeSet(Date date,
                 String comment,
                 String author,
                 List files)
Parameters:
date - Date the changes were committed
comment - comment provided at commit time
author - User who made changes
files - The ChangeFile list

ChangeSet

public ChangeSet()
Constructor used when attributes aren't available until later

Method Detail

getFiles

public List getFiles()
Getter for ChangeFile list.

Returns:
List of ChangeFile.

setFiles

public void setFiles(List files)
Setter for ChangeFile list.

Parameters:
files - List of ChangeFiles.

addFile

public void addFile(ChangeFile file)

containsFilename

public boolean containsFilename(String filename,
                                ScmProviderRepository repository)

getAuthor

public String getAuthor()
Getter for property author.

Returns:
Value of property author.

setAuthor

public void setAuthor(String author)
Setter for property author.

Parameters:
author - New value of property author.

getComment

public String getComment()
Getter for property comment.

Returns:
Value of property comment.

setComment

public void setComment(String comment)
Setter for property comment.

Parameters:
comment - New value of property comment.

getDate

public Date getDate()
Getter for property date.

Returns:
Value of property date.

setDate

public void setDate(Date date)
Setter for property date.

Parameters:
date - New value of property date.

setDate

public void setDate(String date)
Setter for property date that takes a string and parses it

Parameters:
date - - a string in yyyy/MM/dd HH:mm:ss format

setDate

public void setDate(String date,
                    String userDatePattern)
Setter for property date that takes a string and parses it

Parameters:
date - - a string in yyyy/MM/dd HH:mm:ss format
userDatePattern - - pattern of date

getDateFormatted

public String getDateFormatted()
Returns:
date in yyyy-mm-dd format

getTimeFormatted

public String getTimeFormatted()
Returns:
time in HH:mm:ss format

toString

public String toString()
Overrides:
toString in class Object
Returns:
Returns string representation of the changeset

toXML

public String toXML()
Provide the changelog entry as an XML snippet.

Returns:
a changelog-entry in xml format

equals

public boolean equals(Object obj)
Overrides:
equals in class Object
See Also:
Object.equals(java.lang.Object)

escapeValue

public static String escapeValue(Object value)

Escape the toString of the given object. For use in an attribute value.

swiped from jakarta-commons/betwixt -- XMLUtils.java

Parameters:
value - escape value.toString()
Returns:
text with characters restricted (for use in attributes) escaped


Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.