Back to project page PrincePolo.
The source code is released under:
GNU General Public License
If you think the Android project PrincePolo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package se.agile.model; //w ww. j a v a2s . c o m import se.agile.githubdata.Commit; import se.agile.githubdata.File; public class ConflictNotification extends Notification<Tuple<File,Commit>>{ public ConflictNotification(File file, Commit commit){ super(new Tuple<File, Commit>(file, commit)); super.setContentTitle("\"" + file.getName() + "\" changed"); super.setContentText("Edited in branch: " + commit.getBranchName() + " by: " + commit.getCommitter().getName()); } }