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; /*from ww w . ja v a 2s . c o m*/ import se.agile.githubdata.Commit; public class CommitNotification extends Notification<Commit>{ public CommitNotification(Commit commit){ super(commit); super.setContentTitle("New commit to \"" + commit.getBranchName() + "\""); super.setContentText(commit.getName()); } }