org.apache.maven.continuum.xmlrpc.scm
Class ChangeSet

Package class diagram package ChangeSet
java.lang.Object
  extended by org.apache.maven.continuum.xmlrpc.scm.ChangeSet
All Implemented Interfaces:
java.io.Serializable

public class ChangeSet
extends java.lang.Object
implements java.io.Serializable

Class ChangeSet.

See Also:
Serialized Form

Constructor Summary
ChangeSet()
           
 
Method Summary
 void addFile(ChangeFile changeFile)
          Method addFile.
 boolean equals(java.lang.Object obj)
           
 java.lang.String getAuthor()
          Get the author field.
 java.lang.String getComment()
          Get the comment field.
 long getDate()
          Get the date field.
 java.util.Date getDateAsDate()
           
 java.util.List<ChangeFile> getFiles()
          Method getFiles.
 java.lang.String getId()
          Get the id field.
 void removeFile(ChangeFile changeFile)
          Method removeFile.
 void setAuthor(java.lang.String author)
          Set the author field.
 void setComment(java.lang.String comment)
          Set the comment field.
 void setDate(long date)
          Set the date field.
 void setFiles(java.util.List<ChangeFile> files)
          Set the files field.
 void setId(java.lang.String id)
          Set the id field.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ChangeSet

public ChangeSet()
Method Detail

addFile

public void addFile(ChangeFile changeFile)
Method addFile.

Parameters:
changeFile -

getAuthor

public java.lang.String getAuthor()
Get the author field.

Returns:
String

getComment

public java.lang.String getComment()
Get the comment field.

Returns:
String

getDate

public long getDate()
Get the date field.

Returns:
long

getFiles

public java.util.List<ChangeFile> getFiles()
Method getFiles.

Returns:
List

getId

public java.lang.String getId()
Get the id field.

Returns:
String

removeFile

public void removeFile(ChangeFile changeFile)
Method removeFile.

Parameters:
changeFile -

setAuthor

public void setAuthor(java.lang.String author)
Set the author field.

Parameters:
author -

setComment

public void setComment(java.lang.String comment)
Set the comment field.

Parameters:
comment -

setDate

public void setDate(long date)
Set the date field.

Parameters:
date -

setFiles

public void setFiles(java.util.List<ChangeFile> files)
Set the files field.

Parameters:
files -

setId

public void setId(java.lang.String id)
Set the id field.

Parameters:
id -

toString

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

equals

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

getDateAsDate

public java.util.Date getDateAsDate()