-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
738 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package br.uff.ic.gardener; | ||
|
||
import java.util.Date; | ||
|
||
/** | ||
* Represent a revision commited to System | ||
* @author Marcos | ||
* | ||
*/ | ||
public class RevisionCommited { | ||
|
||
private String user; | ||
|
||
private Date dateCommit; | ||
|
||
private String message; | ||
|
||
private RevisionID id; | ||
|
||
public RevisionCommited(RevisionID _id, String _user, String _msg, Date _date) | ||
{ | ||
user = _user; | ||
id = _id; | ||
dateCommit = _date; | ||
message = _msg; | ||
} | ||
public final String getUser() { | ||
return user; | ||
} | ||
|
||
public final Date getDateCommit() { | ||
return dateCommit; | ||
} | ||
|
||
public final String getMessage() { | ||
return message; | ||
} | ||
|
||
public final RevisionID getId() { | ||
return id; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.